This is a converter to produce DPG movies for Moonshell software for Nintendo DS.
You can specify different parameters for encoding.
Also you can embed subtitles into output video.
Script uses mencoder and mplayer for transcoding so, obviously, you must have them installed.
As of version 0.4 DPGconv uses mpeg_stat.
As mpeg_stat homepage is now dead .. you can get it at any FreeBSD mirror ... like here
Help (you can see it running dpgconv.py -h):
A script to transcode video files to DPG format suitable for
Nintendo DS (tm)
dpgconv.py file1 file2 file3 ... fileN
command line options:
--dpg
0,1,2 sets DPG version.. default is DPG2
--pf
sets pixel format, default is 3
0 RGB15
1 RGB18
2 RGB21
3 RGB24
-q,--hq
high quality video
-l,--lq
low quality video(takes no effect when --hq,-q is set)]
default is normal quality
-v,--vbps xxx
sets video stream bps in kb/s(default: 256)
-a,--abps xxx
sets audio stream bps kb/s (default: 128)
-f,--fps xx
sets video frames per second (default:15)
-z,--hz
sets audio frequency (default:32000)
-c,--channels
2 - stereo, 1 - mono
default is to leave as is unless input audio channels
number is bigger then 2 ... then default is stereo
--aid n
use audio track n
--height xxx
destination video height
--width xxx
destination video width
--mv
additional parameters for mencoder for video
--ma
additional parameters for mencoder for audio
Hardcoding subtitles
--nosub
do no try autoloading of subtitles
(default is to try to load subtitle with matching filename)
--sub,-s xxx
Specify subtitles for hardcoding into video output
(is obviously only usable if you specify one file at a time)
--sid n
use subtitle track n
--subcp xxx
specify subtitles encoding
--font xxx
specify font for subtitles
EXAMPLE:
--font ~/arial-14/font.desc
--font ~/arialuni.ttf
--font 'Bitstream Vera Sans'
You can specify font, subcp and other additional mencoder parameters in
~/.mplayer/mencoder.conf
EXAMPLE:
font=/usr/local/share/fonts/msfonts/comic.ttf
subcp=cp1251
_________________________________________________________________
Download
dpgconv 0.1
Initiall release.
dpgconv 0.2
Fixed output file frames count calculation.
(fixes audio/video out of sync when seeking)
dpgconv 0.3
Added progress percentage output.
dpgconv 0.4
Added support for DPG1 and DPG2.
Pixel format settings for DPG1 and DPG2.
Now using mpeg_stat for calculating frame count and GOPs.
Cleanup on SIGINT and SIGTERM.
dpgconv 0.41
Minor cleanup
dpgconv 0.42
GOP list creation patch from oofrab
dpgconv 0.43
Added --sid and --aid parameters