Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
samsung_gravity_2 [2017/01/22 10:32] – beandog | samsung_gravity_2 [2021/10/18 01:21] (current) – beandog | ||
---|---|---|---|
Line 3: | Line 3: | ||
I haven' | I haven' | ||
- | For 3GP video, it supports h263 at 15 fps, and qcf (176x144). Audio is mono, rate has to be 8000hz, and the max bitrate is 12k. | + | For 3GP video, it supports h263 at 15 fps, and qcif (176x144). Audio is mono, rate has to be 8000hz, and the max bitrate is 12k. |
Here's me with my Sony eye candy video again, encoding to 3GP (MPEG-4 simple + AMR), keeping the aspect ratio by padding it with black bars: | Here's me with my Sony eye candy video again, encoding to 3GP (MPEG-4 simple + AMR), keeping the aspect ratio by padding it with black bars: | ||
< | < | ||
- | avconv | + | ffmpeg |
</ | </ | ||
It does support MP3 and AAC playback! You can also do playback with H.264 video on baseline profile. Pretty awesome for a little guy. :) | It does support MP3 and AAC playback! You can also do playback with H.264 video on baseline profile. Pretty awesome for a little guy. :) | ||
+ | < | ||
+ | ffmpeg -i source.mp4 -r 15 -vf scale=176: | ||
+ | </ | ||
+ | |||
+ | And here's ripping a DVD from Handbrake: | ||
+ | |||
+ | < | ||
+ | HandBrakeCLI --format av_mp4 --encoder x264 --encoder-profile baseline --encoder-preset medium --rate 15 --aencoder fdk_aac --mixdown stereo --width 176 --subtitle none -i /dev/dvd -o samsung.mp4 | ||
+ | </ |