반응형
주피터 노트북 영상 불러오기(사이즈조절/소리없애기)
사이즈 조절해서 영상 불러오기
from IPython.display import Video
video_path = "record_test.mov"
# width, height 지정을 통한 사이즈 조절
width = 640
height = 480
video = Video(video_path, width=width, height=height)
video
소리를 제거 하고 영상 불러오기
1. 터미널에서 영상 소리를 제거할 수 있는 프로그래 ffmpeg 설치
!echo 'password' | sudo -S apt-get -y install ffmpeg
2. ffmpeg를 이용하여 record_test.mov 파일 영상 소리제거 후 record_test_mute.mov파일로 저장
!ffmpeg -i 20231002/record_test.mov -an -vcodec copy 20231002/record_test_mute.mov
3. 소리 없는 영상 파일 불러오기
from IPython.display import Video
# 소리가 없어진 영상 파일이름 지정
video_path = "record_test_mute.mov"
# width, height 지정을 통한 사이즈 조절
width = 640
height = 480
video = Video(video_path, width=width, height=height)
video
반응형
'python' 카테고리의 다른 글
파이썬 여러공백을 하나의 공백으로 re (0) | 2023.11.10 |
---|---|
파이썬 영상을 gif 파일로 전환하기 (0) | 2023.10.11 |
TypeError: 'module' object is not callable tqdm (0) | 2023.09.20 |
TypeError: randint(): argument 'size' (position 2) must be tuple of ints, not int (0) | 2023.09.19 |
OSError: [E050] Can't find model 'en_core_web_sm'. It doesn't seem to be a Python package or a valid path to a data directory (0) | 2023.09.19 |
댓글