回答
使用-ss
和-t
選項:
ffmpeg -i input -t 00:15:00 -codec copy output
ffmpeg -ss 00:15:00 -i input -codec copy output
-ss position (input/output)
When used as an input option (before "-i"), seeks in this input
file to position. Note the in most formats it is not possible to
seek exactly, so ffmpeg will seek to the closest seek point before
position. When transcoding and -accurate_seek is enabled (the
default), this extra segment between the seek point and position
will be decoded and discarded. When doing stream copy or when
-noaccurate_seek is used, it will be preserved.
When used as an output option (before an output filename), decodes
but discards input until the timestamps reach position.
position may be either in seconds or in "hh:mm:ss[.xxx]" form.
-t duration (output)
Stop writing the output after its duration reaches duration.
duration may be a number in seconds, or in "hh:mm:ss[.xxx]" form.
-to and -t are mutually exclusive and -t has priority.
的例子使用-codec copy
使用stream copy模式,而不是再編碼的。
謝謝!你能告訴我如何使用ffmpeg分割批處理嗎? – user3513568
@ user3513568你沒有提供足夠的信息給你一個更詳細的答案。你的操作系統是什麼?你想重新編碼輸出,還是你想流複製?如果您想重新編碼,您希望輸出的視頻,音頻和容器格式是什麼?所有的輸入都在一個目錄中嗎? – LordNeckbeard
嗨,我使用Windows操作系統。所有在一個目錄中的輸入,我想使用流複製,因爲它是如此之快。謝謝 ! – user3513568
- 1. FFmpeg:如何高效地分割視頻?
- 2. 用ffmpeg解析分割視頻
- 3. 如何使用FFMPEG精確分割LONG GOP視頻(h264/XDCAM ...)?
- 4. 如何使用ffmpeg分割視頻,然後順利合併?
- 5. FFMpeg批量圖像+多音頻視頻
- 6. 如何使用ffmpeg更改部分視頻的幀速率
- 7. FFmpeg視頻分割時的幀丟失
- 8. FFMPEG視頻圖像批量轉換
- 9. 使用FFmpeg編碼的視頻播放速度過快
- 10. 如何加速ffmpeg視頻轉換
- 11. 使用的ffmpeg自動分割視頻到宿舍和堆疊
- 12. 如何分割視頻,然後連接回原來的ffmpeg
- 13. 視頻過快的FFmpeg
- 14. 如何使用FFMPEG分割視頻,以便每個塊以關鍵幀開始?
- 15. 如何用ffmpeg或avconv快速分割mp4,在哪裏指定時間?
- 16. FFmpeg的簡單/快速轉換視頻文件不與任何視頻工作
- 17. 用gstreamer分割/分割視頻流
- 18. 如何使用ffmpeg批量添加Outro?
- 19. 快速PDF分割器庫
- 20. 快速替代分割R
- 21. 如何使用FFmpeg旋轉視頻?
- 22. 如何使用ffmpeg轉換視頻
- 23. 如何使用ffmpeg庫轉置視頻?
- 24. 使用ffmpeg批量轉換
- 25. 如何分割批量可變
- 26. MySQL快速批量插入
- 27. 使用ffmpeg快速檢查目錄內的視頻文件的完整性
- 28. 使用ffmpeg覆蓋視頻
- 29. 如何從視頻/快速視頻中保存圖像?
- 30. 如何正確使用ffmpeg降低360視頻的分辨率?
你的問題對於[so]而言是offtopic。它似乎不是關於[幫助中心](http://stackoverflow.com/help/on-topic)中定義的範圍內的編程。您的問題可以被投票/標記爲遷移到[su]。 – LordNeckbeard