是否可以使用ffmpeg在視頻文件中添加多個暫停?例如:我想從第5秒開始暫停3秒,然後從第17秒開始暫停8秒。音頻文件同步不是問題,只是暫停應該在指定的時間間隔。 謝謝。FFMPEG-在視頻中添加暫停
0
A
回答
0
結合時間線編輯'enable'參數使用循環過濾器。 應允許您製作一個過濾器,該過濾器在單幀中循環3秒,但僅在輸出時間戳在3秒和5秒之間時才啓用。
+0
一個實際的,可用的示例命令將會使這個更好的答案非常有用。 – LordNeckbeard
0
如果我以前的答覆不工作,你可能需要削減了源視頻,然後在其上重合空白畫布。使用-filter_complex參數傳遞您構造的過濾器圖。
https://ffmpeg.org/ffmpeg-filters.html
the 'color' filter will give you a blank canvas with a 5 second duration
the 'trim' filter will allow you to get a stream containing only the first 3 seconds
the 'overlay' filter will allow you to overlay the first 3 seconds of footage onto the blank canvas repeating the last frame
這將會給你的第一個場景
the 'concat' filter will allow you to join the scenes together
you can also use 'select' (see ffmpeg timeline editing)
to exclude the first 3 seconds of the source video for the second scene.
(You may need to import the same source video file twice
so you can reference it as [0:v] to make the first scene
and [1:v] to make the second scene in the filtergraph if you run into problems.)
相關問題
- 1. 在AVExportSession中暫停視頻
- 2. 將音頻添加到ffmpeg視頻流
- 3. 如何在vlcj中暫停視頻(在vlcj中錄製視頻)?
- 4. 在視頻中暫停Javascript循環
- 5. 如何在Javascript中暫停Vimeo視頻?
- 6. 如何在AVPlayervewcontroller中暫停視頻?
- 7. 視頻不在片段中暫停ViewPager
- 8. 使用ffmpeg製作視頻w /幀之間暫停
- 9. ffmpeg:我如何在視頻-2的開頭添加視頻-1
- 10. 用firstChild暫停視頻?
- 11. Fullpage.js continuousVertical = TRUE暫停視頻
- 12. ios - 暫停視頻錄製
- 13. SKVideoNode.pause()不暫停視頻
- 14. FFMPEG添加音頻到視頻,但它夾到視頻長度
- 15. PHP + FFMPEG添加音樂視頻替代?
- 16. 旋轉視頻添加黑條與ffmpeg
- 17. ffmpeg:添加超鏈接到視頻?
- 18. FFmpeg截斷視頻也在1行中添加圖像在視頻
- 19. 添加暫停懸停jQuery
- 20. 在錄製視頻中增加fps ffmpeg
- 21. 在內嵌的colorbox中加載mediaelementjs,暫停視頻onClose
- 22. 播放/暫停YouTube視頻中拉網
- 23. 在iPad上暫停HTML5 YouTube視頻
- 24. 如何停止視頻的js onclick事件從暫停視頻
- 25. 在ffmpeg中添加無聲音頻
- 26. 將HTML5視頻暫停視圖
- 27. 暫停視頻不會停止HTML5視頻標籤中的音頻
- 28. FFmpeg/avconv使用PHP-FFmpeg旋轉視頻並添加水印
- 29. FFMPEG發揮疊加視頻
- 30. 添加「在懸停暫停」滑塊
看到我的【答案】(https://superuser.com/q/1071369/114058)這裏基本方法。 – Mulvya