My boss thinks I'm some tech guru just because I know after effects, premiere and some programming.
Thing is, there's a few videos that need to be encoded to 3GP. Each video has to be encoded into 6 different .3gp's:
- Sound: [Stereo, AAC, 24Khz]
Video: [QCIF(176X144)], h263- Sound: [MPEG-4 AAC, Stereo (8kbps-80kbps bitrate and 16khz-32khz sampling rate)]
Video: [QVGA(320X240), up to 30fps framerate and 64kbps bitrate], h263- Sound: [AMR, Mono (8kbps-80kbps bitrate and 8khz-16khz sampling rate)]
Video: [QVGA(320X240), up to 30fps framerate and 64kbps bitrate], h263- Sound: [AMR, Mono, 8Khz]
Video: [SQCIF(128X96)], h263- Sound: [AMR, Mono (8kbps-80kbps bitrate and 8khz-16khz sampling rate)]
Video: [QCIF(176X144), up to 30fps framerate and 64kbps bitrate], h263- Sound: [MPEG-4 AAC, Stereo (8kbps-80kbps bitrate and 16khz-32khz sampling rate)]
Video: [QCIF(176X144), up to 15fps framerate and 64kbps bitrate], h264
Adobe Media Encoder doesn't let me customize my settings to this remarkably specific level. After some research I found FFmpeg. But I need help.
I am way beyond my knowledge. Borderline desperate with unreasonable expectations. I need a miracle. Please.
Results 1 to 3 of 3
-
-
I think something like this (command line) would get you those 3GPs:
- ffmpeg -i sample.avi -f 3gp -s qcif -vcodec h263 -b 200k -ar 24000 -ac 2 -acodec libfaac -ab 64k sample1.3gp
- ffmpeg -i sample.avi -f 3gp -s qvga -r 30 -vcodec h263 -b 64k -ar 32000 -ac 2 -acodec libfaac -ab 80k sample2.3gp
- ffmpeg -i sample.avi -f 3gp -s qvga -r 30 -vcodec h263 -b 64k -ar 16000 -ac 1 -acodec libopencore_amrnb -ab 12.2k sample3.3gp
- ffmpeg -i sample.avi -f 3gp -s sqcif -vcodec h263 -b 200k -ar 8000 -ac 1 -acodec libopencore_amrnb -ab 12.2k sample4.3gp
- ffmpeg -i sample.avi -f 3gp -s qcif -r 30 -vcodec h263 -b 64k -ar 16000 -ac 1 -acodec libopencore_amrnb -ab 12.2k sample5.3gp
- ffmpeg -i sample.avi -f 3gp -s qcif -r 15 -vcodec libx264 -vpre slow -vpre baseline -level 3.0 -b 64k -ar 32000 -ac 1 -acodec libfaac -ab 80k -threads 0 sample6.3gp
- ffmpeg -i sample.avi -f 3gp -s qcif -vcodec h263 -b 200k -ar 24000 -ac 2 -acodec libfaac -ab 64k sample1.3gp
Similar Threads
-
Need Help Urgently Capturing from SVHS VCR
By Hairykiore in forum Video Streaming DownloadingReplies: 9Last Post: 4th Aug 2011, 19:26 -
Anamorphic encoding to 3gp container
By avreader1 in forum Video ConversionReplies: 2Last Post: 13th Mar 2010, 19:41 -
Authoring Help Urgently Needed
By AlanSibley in forum Authoring (Blu-ray)Replies: 11Last Post: 3rd Dec 2008, 01:20 -
new here how do i setup tbc AVT-8710 Urgently
By effects in forum RestorationReplies: 7Last Post: 6th Jul 2007, 13:21 -
Conversion from m2t to DVD poor - HELP REQUESTED URGENTLY
By brianlara in forum Video ConversionReplies: 2Last Post: 27th May 2007, 18:33