I compress recorded tv after it has finished recording.  The start of
the bash script is as follows;


------------------
#!/bin/bash

CAPTURE_EXTENSION="ts"
TRANSCODED_EXTENSION="avi"
THUMBNAIL_EXTENSION="jpg"

TRANSCODER="/home/freevo/freevoscripts/transcoder.sh"
THUMBNAILER="/home/freevo/freevoscripts/thumbnailer.sh"

RECORDING_DIR="/home/freevo/video/recorded-tv"

cd "$RECORDING_DIR"

while ((1)) ; do
        echo Sleeping
        sleep 300
        echo Waking up
        date
        for CAPTURED_FILE in `find . -mmin +5 -name
"*.${CAPTURE_EXTENSION}"` ;
do

blah compressy blah blah

done
-----------------


This is not really what you want, but depending on what you want to
achieve it could be used.

-Stygen


On Wed, 2005-11-23 at 16:08 +0100, Dirk Meyer wrote:
> Florian Demmer wrote:
> > is there anything like this in 1.5
> 
> No
> 
> > or planned for 2.x?
> 
> Yes
> 
> 
> Dischi
> 
-- 
Justin <[EMAIL PROTECTED]>


-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
Freevo-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-users

Reply via email to