Hello all from Manchester, UK

zigger1_2000

Vu+ Newbie
Hi names Chris,

Thanks for the site. P.S VU+DUO2 owner and very happy with BH 2.0.5

I'm developing an application to compress your .ts recordings to your PC to save room and make your recordings portable.

See screenshot.

If anyone is interested, let me know and I will send an alpha:

PathMonitor.PNG

PathMonitor v1.0.0.1 Alpha
For technical queries - contact chris.spencer1@googlemail.com
==================================================================


The example command lines were tested using ffmpeg and hanbrake

Handbrake is available here:
http://handbrake.fr/downloads.php (tested with the 0.9.9 64 bit version

ffmpeg is available here:
http://www.ffmpeg.org/download.html (tested with the ffmpeg-20130809-git-3b2e99f-win32-static build - see bin folder)
or more direct link:
http://ffmpeg.zeranoe.com/builds/win32/static/ffmpeg-latest-win32-static.7z

the example config.xml shows handbrakeCLI being called via it's full path and ffmpeg.exe being called directly, so
it must reside in the same path as this program.

Note. A working version of .NET 4.5 helps - available here:
http://www.microsoft.com/en-gb/download/details.aspx?id=30653

<!--
If you opened this to edit from the 'File>Edit config.xml' menu, then you must close the application
before you save this!!!
-->

example config file
<Config>
<MonitorPath>\\VUDUO2\Harddisk\movie\</MonitorPath>
<FileExtension>*.ts</FileExtension>
<strCommand>"C:\Program Files\Handbrake\HandBrakeCLI.exe" -i "[strIPath][strIFile]" -t 1 --angle 1 -c 1 -o "[strOPath][strOFile].mp4" -f mp4 -w 1920 -b 2500 --loose-anamorphic --modulus 2 -e ffmpeg4 -q 20 --vfr -a 2 -E copy:ac3 -6 auto -R Auto -B 0 -D 0 --gain 0 --audio-fallback ffac3 --markers="%temp%\markers.csv" --x264-preset=veryfast --x264-profile=main --h264-level="4.0" --verbose=1</strCommand>
<strOutputPath>E:\tvshows\</strOutputPath>
<strCommand2>ffmpeg -i "[strIPath][strIFile]" -vcodec libx264 -b:v 2000k -acodec copy "[strOPath][strOFile].avi"</strCommand2>
</Config>
 
Back
Top