Рет қаралды 6,145
Test for decoding a VideoNow disc. A custom decoder was written for this since all the other ones I found were awful. This was then encoded with ffmpeg using:
ffmpeg -f rawvideo -pixel_format gray -video_size 80x80 -framerate 15 -i $1 \
-f u8 -ar 44100 -ac 1 -i $2 -c:a mp3 -c:v h264 -sws_flags neighbor -s 800x800 \
-aspect 4:3 ${1}.mkv
The video is just some advertisements that were on the disc to prevent anything nasty happening with content id by uploading actual episodes.
The utility can be found at: github.com/pau...
Should compile for windows/mac/linux/whatever.