Answers for "cut a video ffmpeg"

8

ffmpeg trim video

ffmpeg -ss 00:00:30.0 -i input.wmv -c copy -t 00:00:10.0 output.wmv
ffmpeg -ss 30 -i input.wmv -c copy -t 10 output.wmv
Posted by: Guest on February-06-2021
1

clip video using ffmpeg

ffmpeg -ss 00:01:00 -i input.mp4 -to 00:02:00 -c copy output.mp4
Posted by: Guest on December-19-2021
0

trim video using ffmpeg

import ffmpeg
!ffmpeg -y -i '/content/drive/MyDrive/GeekloneTech/mc/Object_Detection_Tracking/custom_video/2018-03-07.17-25-06.17-30-06.school.G339.mp4' -ss 00:00:00 -to 00:10:00 -codec copy  -c:a aac '/content/drive/MyDrive/GeekloneTech/mc/Object_Detection_Tracking/custom_video/2018-03-07.17-25-06.17-30-06.school.G339_trimmed.mp4'
Posted by: Guest on March-01-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language