Articles

New CD Jewel Case Template ready to Print!

I’ve added two new documents to my CD Templates for Jewel Case in SVG . The new versions are a leaflet and a back cover with margin markers only. This version is designed for final printing: thanks to markers it’s easy to cut and fold the paper with high …
➟ Read more


Transcode commands

Unmaintained project The transcode CLI and its associated tools are no longer maintained. I recommend to use FFmpeg  instead. Get information about a video: 1$ tcprobe -i ./video.avi Merge multiple video into one: 1$ avimerge -i part1.avi part2.avi -o big-file.avi Extract the raw subtitle stream. The …
➟ Read more

Video commands

Here are some commands to get information about the nature of a video: 1$ ffmpeg -i ./video.avi 2$ file ./video.avi 3$ avprobe ./video.avi 4$ mplayer -frames 0 -identify ./video.avi FFmpeg Remux a Flash video to an MP4 container without transcoding: 1$ ffmpeg -i ./input.flv -vcodec …
➟ Read more

Audio commands

Convert .wma file to 192 kpbs .mp3 : 1$ ffmpeg -i audio.wma -b:a 192k audio.mp3 Convert all .wma files to VBR .mp3 at quality range number #4  : 1$ find . -iname "*.wma" -exec ffmpeg -i "{}" -q:a 4 "{}.mp3" \; 2$ rename 's/\.wma\.mp3/\.mp3/' *.mp3 Convert .ape file …
➟ Read more