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
Code:# 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
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
-
Originally posted by pyramid_raider View PostFor CentOS 5.x.x follow these steps
Code:# 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
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