hii plz tell how to split video files in ssh by ffmpeg ???
Split Video Files In ffmpeg
Collapse
X
-
To Convert 3GP File To MP4 With FFMPEG
Follow these steps
For CentOS 5.x.x
For CentOS 6.x.xCode:# cd /usr/local/bin/ # ffmpeg -i /full video path/video.3gp -ab 128 -ac 1 -ar 48000 -b 100000 -r 30 /full path where to save file/converted.mp4
this will work 100% if u face any issue then let me know with the error message.. cheers!!Code:# cd /usr/bin/ # ffmpeg -i /full video path/video.3gp -ab 128 -ac 1 -ar 48000 -b 100000 -r 30 /full path where to save file/converted.mp4
Last edited by pyramid_raider; 21.11.11, 08:26.
Comment
-
yea that works. thankss dudeOriginally posted by pyramid_raider View PostFor CentOS 5.x.x follow these steps
and for CentOS 6.x.x follow these stepsCode:# cd /usr/local/bin/ # ffmpeg -i /full video path/video.3gp -ab 128 -ac 1 -ar 48000 -b 100000 -r 30 /full path where to save file/converted.mp4
this will work 100% if u face any issue then let me know with the error message.. cheers!!Code:# cd /usr/bin/ # ffmpeg -i /full video path/video.3gp -ab 128 -ac 1 -ar 48000 -b 100000 -r 30 /full path where to save file/converted.mp4
Comment
Comment