i'm recording with TVMosaic to a network share, this share i'm using with my VU+ box too.
It will be nice when there is for every .ts file a .jpg file with the same name in the same folder, then i have for each recording a picture in my VU+.
At the moment i execute every hour a script:
Code: Select all
/usr/local/bin/tvmosaic/data/common/sqlite/sqlite3 /opt/TVMosaic/recorder_database/recorder_database.db "select timer_id, filename from completed_recording" > /tmp/thcopy
sed -i 's/|/.jpg "/g' /tmp/thcopy
sed -i 's/.ts/.jpg/g' /tmp/thcopy
sed -i 's/^/cp \/recordings\/TV-Aufzeichnungen\/thumbnails\//' /tmp/thcopy
sed -i 's/$/"/' /tmp/thcopy
chmod 777 /tmp/thcopy
/bin/bash /tmp/thcopy
Regards
Stefan