python-transcoded 0.4.2

Creator: bradpython12

Last updated:

Add to Cart

Description:

pythontranscoded 0.4.2

# Video transcoding daemonThis project implements a daemon that wraps ffmpeg for video transcoding and listens for jobs over http.Intended to be used as backend for web applications that deal with video encoding in any way so they don'thave to mess with the long running background processes, queueing and ffmpeg command line parameters.To use this you create a config file that defines which applications can use which directory for media andthe encoding profiles the applications can use.An example configuration:```conf[general]port=12380listen=127.0.0.1[user-mediacenter]password=verysecretpaths=/mnt/storage/videoscallback=http://127.0.0.1/transcode-callback[profile-h264]container=mkvvcodec=h264vpolicy=alwaysacodec=aacapolicy=alwaysvbitrate=2Mvbitratemax=3Mabitrate=192kabitratemax=1M```This defines the user `mediacenter` with the password `verysecret` which can start transcoding jobs in any path startingwith `/mnt/storage/videos`. It also defines a callback url for reporting job progress to the requesting application.It also defines the profile called `h264` which always encodes to h264+aac in a mkv container.The default policy for transcoded is to transcode as little as possible unless explicitly configured to transcode anything.The default config doesn't transcode the stream if the source codec matches the destination codec(s). It does alwaysrecreate the container for the streams.It is possible to define multiple output codecs seperated by a comma, in that case it won't transcode if the source codecmatches any of the listed codecs. If the source doesn't match any codec then it will transcode it to the first specifiedcodec.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.