Any video transcoding lib like this?

Karabuta via Digitalmars-d digitalmars-d at puremagic.com
Sat Sep 10 04:03:44 PDT 2016


Hello community, has anyone done a lib published/unpublihed in D 
like https://github.com/senko/python-video-converter . It was 
developed in python and uses ffmpeg behind the scene.

It works this way;

from converter import Converter
c = Converter()
info = c.probe('test1.ogg')

conv = c.convert('test1.ogg', '/tmp/output.mkv', {
     'format': 'mkv',
     'audio': {
         'codec': 'mp3',
         'samplerate': 11025,
         'channels': 2
     },
     'video': {
         'codec': 'h264',
         'width': 720,
         'height': 400,
         'fps': 15
     }})

for timecode in conv:
     print "Converting (%f) ...\r" % timecode


More information about the Digitalmars-d mailing list