본문 바로가기
python

주피터 노트북 영상 불러오기(사이즈조절/소리없애기)

by 와우지니 2023. 10. 3.
반응형

주피터 노트북 영상 불러오기(사이즈조절/소리없애기)

사이즈 조절해서 영상 불러오기

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

 

반응형

댓글