Debian
從影片文件的特定部分提取/複製音頻,可能嗎?
假設我有一部 2 小時的電影,我想在另一個文件中提取/複製音頻,比如 01:25:00 和 01:30:00 之間的 5 分鐘,有沒有辦法做到這一點。
該文件為 .avi 格式 -
Format : AVI Format/Info : Audio Video Interleave File size : 929 MiB Duration : 2h 44mn Overall bit rate mode : Variable Overall bit rate : 790 Kbps Writing application : VirtualDubMod 1.5.4.1 (build 2178/release) Writing library : VirtualDubMod build 2178/release Video ID : 0 Format : MPEG-4 Visual Format profile : Advanced Simple@L5 Format settings, BVOP : 1 Format settings, QPel : No Format settings, GMC : No warppoints Format settings, Matrix : Custom Codec ID : XVID Codec ID/Hint : XviD Duration : 2h 44mn Bit rate : 662 Kbps Width : 672 pixels Height : 288 pixels Display aspect ratio : 2.35:1 Frame rate : 23.976 (23976/1000) fps Color space : YUV Chroma subsampling : 4:2:0 Bit depth : 8 bits Scan type : Progressive Compression mode : Lossy Bits/(Pixel*Frame) : 0.143 Stream size : 778 MiB (84%) Writing library : XviD 1.2.1 (UTC 2008-12-04) Audio ID : 1 Format : MPEG Audio Format version : Version 1 Format profile : Layer 3 Mode : Joint stereo Mode extension : MS Stereo Codec ID : 55 Codec ID/Hint : MP3 Duration : 2h 44mn Bit rate mode : Variable Bit rate : 115 Kbps Nominal bit rate : 128 Kbps Channel(s) : 2 channels Sampling rate : 48.0 KHz Compression mode : Lossy Stream size : 136 MiB (15%) Alignment : Aligned on interleaves Interleave, duration : 24 ms (0.58 video frame) Interleave, preload duration : 485 ms Writing library : LAME3.98r Encoding settings : -m j -V 4 -q 2 -lowpass 17 --abr 128
你試過
ffmpeg
嗎?就像是ffmpeg -vn \ # no video -ss 01:25:00 \ # start offset -t 300 \ # duration -i foo.avi bar.mp3
可能會成功。