Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ffmpeg を使用して、ビデオをパーツにスライスしたいと考えています。開始と期間ではなく、 2 つの絶対的な「位置」があります。だから私はそのようにそれを使用することはできません:
ffmpeg -ss 00:00:12.12 -t 00:00:14.13 -i foo.mov...
(繰り返しますが、-t の後の時間は期間ではありません) to 位置間の期間を計算する必要がありますか、または ffmpeg でこれを行う方法はありますか?
-ss で開始をマークし、-t で最終期間をマークします。-t オプションは、計算する必要がある 2 つの絶対位置の差を示します。