내가 하고 싶은 일
최신 ffmpeg를 사용하여 Ubuntu 11.10에서 과학 프로젝트용 비디오를 자르려고 하고 있으며, VLC와 mplayer 모두에서 잘 재생되지만 비디오가 제대로 열리지 않는 Kino 및 avidemux도 시도했습니다.
지금까지 내가 가장 가까운 것은 다음 매개변수를 사용하는 것입니다.
ffmpeg -ss 01:58 -t 21 -i row.avi -vcodec copy row_cut.avi
또한 시도
ffmpeg -ss 1 -i row.avi -vcodec copy -t 3 row_cut.avi
여전히 같은 오류가 발생합니다 :(
출력으로 최소 21초 비디오를 얻었고 명백한 오류는 없지만 비디오는 VLC(티커 롤이지만 VLC 로고만 표시)나 mplayer("내부 데이터 스트림 오류")에서 재생되지 않습니다.
인코딩 시 FFmpeg 출력
ffmpeg version git-2012-02-02-c853124 Copyright (c) 2000-2012 the FFmpeg developers
built on Feb 2 2012 23:17:50 with gcc 4.6.1
configuration: --enable-gpl --enable-libfaac --enable-libmp3lame --enable --libopencore-amrnb --enable-libopencore-amrwb --enable-libtheora --enable-libvorbis --enable-libx264 --enable-nonfree --enable-postproc --enable-version3 --enable-x11grab
libavutil 51. 37.100 / 51. 37.100
libavcodec 54. 0.102 / 54. 0.102
libavformat 54. 0.100 / 54. 0.100
libavdevice 53. 4.100 / 53. 4.100
libavfilter 2. 61.100 / 2. 61.100
libswscale 2. 1.100 / 2. 1.100
libswresample 0. 6.100 / 0. 6.100
libpostproc 52. 0.100 / 52. 0.100
Input #0, avi, from 'row.avi':
Duration: 00:03:13.93, start: 0.000000, bitrate: 46210 kb/s
Stream #0:0: Video: rawvideo, pal8, 640x300, 30 tbr, 30 tbn, 30 tbc
File 'row_cut.avi' already exists. Overwrite ? [y/N] y
Output #0, avi, to 'row_cut.avi':
Metadata:
ISFT : Lavf54.0.100
Stream #0:0: Video: rawvideo, pal8, 640x300, q=2-31, 30 tbn, 30 tbc
Stream mapping:
Stream #0:0 -> #0:0 (copy)
Press [q] to stop, [?] for help
frame= 631 fps=125 q=-1.0 Lsize= 118334kB time=00:00:21.03 bitrate=46088.4kbits/s
video:118312kB audio:0kB global headers:0kB muxing overhead 0.018043%
비디오를 로드할 때 FFmpeg 출력
내 생각엔 비디오에 이상한 형식이 있고 ffmpeg의 매개 변수 또는 출력의 Metada:encoder:Lavf53.3.0 부분을 오해한 것 같습니다.
user@computer:/somewhere$ ffmpeg -i row.avi
Input #0, avi, from 'row.avi':
Duration: 00:03:13.93, start: 0.000000, bitrate: 46210 kb/s
Stream #0.0: Video: rawvideo, pal8, 640x300, 30 tbr, 30 tbn, 30 tbc
그리고
user@computer:/somewhere$ ffmpeg -i row_cut.avi
Input #0, avi, from 'row_cut.avi':
Metadata:
encoder : Lavf54.0.100
Duration: 00:00:21.03, start: 0.000000, bitrate: 46088 kb/s
Stream #0.0: Video: rawvideo, bgr24, 640x300, 30 tbr, 30 tbn, 30 tbc
미디어인포 출력
General
Complete name : row.avi
Format : AVI
Format/Info : Audio Video Interleave
Format profile : OpenDML
File size : 1.04 GiB
Duration : 3mn 13s
Overall bit rate : 46.2 Mbps
Video
ID : 0
Format : RGB
Codec ID : 0x00000000
Codec ID/Info : Basic Windows bitmap format. 1, 4 and 8 bpp versions are palettised. 16, 24 and 32bpp contain raw RGB samples
Duration : 3mn 13s
Bit rate : 46.1 Mbps
Width : 640 pixels
Height : 300 pixels
Display aspect ratio : 2.2:1
Frame rate : 30.000 fps
Bit depth : 8 bits
Bits/(Pixel*Frame) : 8.000
Stream size : 1.04 GiB (100%)
그리고
General
Complete name : row_cut.avi
Format : AVI
Format/Info : Audio Video Interleave
File size : 116 MiB
Duration : 21s 33ms
Overall bit rate : 46.1 Mbps
Writing application : Lavf54.0.100
Video
ID : 0
Format : RGB
Codec ID : 0x00000000
Codec ID/Info : Basic Windows bitmap format. 1, 4 and 8 bpp versions are palettised. 16, 24 and 32bpp contain raw RGB samples
Duration : 21s 33ms
Bit rate : 46.1 Mbps
Width : 640 pixels
Height : 4294966 996 pixels
Display aspect ratio : 0.000
Frame rate : 30.000 fps
Bit depth : 8 bits
Stream size : 116 MiB (100%)
답변1
ffmpeg 메일링 리스트의 답변:
pal8 rawvideo에서는 -vcodec copy를 사용할 수 없지만(버그일 수 있음) 해결 방법으로 -vcodec rawvideo를 사용할 수 있습니다.
VLC에서는 작동하지만 mplayer에서는 작동하지 않으므로 지금은 작동합니다. 최종 작업 명령은 다음과 같습니다.
ffmpeg -ss 1 -i row.avi -vcodec rawvideo -t 3 row_cut.avi