Difference between revisions of "Mythbrake"

From MythTV Official Wiki
Jump to: navigation, search
(move user editable constants to top, some other commentary)
m (script improvements, compatibility with Philips UPnP clients)
Line 1: Line 1:
This script shall be called as MythTV [[User Jobs|user job]]. It transcodes the DVB recordings (mpeg files) using [http://handbrake.fr Handbrake]. Using [http://mediainfo.sourceforge.net/ Mediainfo] it first checks wether the recording is HDTV.  
+
This script shall be called as MythTV [[User Jobs|user job]]. It transcodes the DVB recordings (mpeg files) using [http://handbrake.fr Handbrake]. On a Phenom II X4 2,8Ghz it is roughly 5 times faster than mythnuv2mkv. All transcodings are single pass with [https://trac.handbrake.fr/wiki/ConstantQuality constant quality] as this results in the same quality as dual pass without the need for a second pass, thus its even faster. The only downside to dual pass is a slightly less predictable file size. As burning files to optical media is imho a thing of the past, exact file size hardly matters though.
 +
 
 +
 
 +
Using [http://mediainfo.sourceforge.net/ Mediainfo] it first checks wether the recording is HDTV.  
  
 
'''HDTV''' will be reencoded with Mpeg4 AVC H264 to save space. All HDTV channels I can receive here in Germany are without commercials, so I don't bother running mythcommflag on them. In case your situation differs you'll have to modify the script.
 
'''HDTV''' will be reencoded with Mpeg4 AVC H264 to save space. All HDTV channels I can receive here in Germany are without commercials, so I don't bother running mythcommflag on them. In case your situation differs you'll have to modify the script.
Line 8: Line 11:
 
'''Audio''': Currently the scipt just takes the first audio stream from the source file, transcodes it to Mp3 and names the stream "Deutsch-Stereo". You might want to at least adjust the stream name. I am planning to improve this script to preserve surround sound (AC3). As the script directly accesses the recording file no hacking / patching of MythTV is required, this script just needs some logic to detect if surround sound is present.
 
'''Audio''': Currently the scipt just takes the first audio stream from the source file, transcodes it to Mp3 and names the stream "Deutsch-Stereo". You might want to at least adjust the stream name. I am planning to improve this script to preserve surround sound (AC3). As the script directly accesses the recording file no hacking / patching of MythTV is required, this script just needs some logic to detect if surround sound is present.
  
 +
 +
If you find any bugs or problems feel free to mail me at ares.drake@gmail.com
  
 
----
 
----
  
''If you find any bugs or problems feel free to mail me at ares.drake@gmail.com''
+
Version 1.1 Changelog
+
* Change Container from MKV to MP4 optimized for streaming, reason: Compatibility with Philips UPnP Clients
----
+
* Updated to use %DIR% instead of fixed path
 +
* some cleanup
 +
Version 1.0 Changelog
 +
* Inital release
  
  
 
<pre>
 
<pre>
 
#!/bin/bash
 
#!/bin/bash
# Save this as umwandeln.sh and make the file executable
+
# Save this as mythbrake.sh and make the file executable
 
# Written by Ares Drake, ares.drake@gmail.com
 
# Written by Ares Drake, ares.drake@gmail.com
 
# Licenced under GPL v3
 
# Licenced under GPL v3
Line 25: Line 33:
 
#USAGE:######################
 
#USAGE:######################
 
# This Sript shall be called as a MythTV user job like as follows:
 
# This Sript shall be called as a MythTV user job like as follows:
# /path/to/umwandeln.sh "%FILE%" "%SUBTITLE%" "%CHANID%" "%STARTTIME%" "%TITLE%"
+
# /path/to/mythbrake.sh "%DIR" "%FILE%" "%CHANID%" "%STARTTIME%" "%TITLE%" "%SUBTITLE%"
 
#############################
 
#############################
 
#
 
#
Line 39: Line 47:
 
logdir="/opt/mythtv/transcodelogs"
 
logdir="/opt/mythtv/transcodelogs"
 
errormail="youremail@adress.com" # this email address will be informed in case of errors
 
errormail="youremail@adress.com" # this email address will be informed in case of errors
mythrecordingsdir="/some/path" # specify directory where MythTV stores its recordings
 
# note that setting a single recording path like this can be
 
# considered broken for any versions of mythtv newer than 0.20
 
# just use %DIR% instead
 
 
outdir="/where/you/want/it" # specify directory where you want the transcoded file to be placed
 
outdir="/where/you/want/it" # specify directory where you want the transcoded file to be placed
preferredaudio="Deutsch-Stereo"
+
audiostreamname="Deutsch-Stereo" #This is the label of the audio stream inside the final video file
 +
 
  
 
###Define some basic variables
 
###Define some basic variables
 
scriptstarttime=$(date +%F-%H%M%S)
 
scriptstarttime=$(date +%F-%H%M%S)
file="$1"
+
mythrecordingsdir="$1" # specify directory where MythTV stores its recordings
subtitle="$(echo "$2" | sed 's/(//g' | sed 's/)//g' | sed 's/://g')"
+
file="$2"
#| sed 's///_/g' | sed 's/?//g' | sed s/"'"//g
+
subtitle="$(echo "$6" | sed 's/(//g' | sed 's/)//g' | sed 's/://g' | sed 's%/%_%g')"
 
chanid="$3"
 
chanid="$3"
 
starttime="$4"
 
starttime="$4"
 
title="$(echo "$5" | sed 's/(//g' | sed 's/)//g' | sed 's/:/_/g' | sed 's%/%_%g')"
 
title="$(echo "$5" | sed 's/(//g' | sed 's/)//g' | sed 's/:/_/g' | sed 's%/%_%g')"
#| sed 's/"/"/_/g' | sed 's/?//g' | sed s/"'"/""/g
 
 
logfile="$logdir/$scriptstarttime-$title.log"
 
logfile="$logdir/$scriptstarttime-$title.log"
 
touch "$logfile"
 
touch "$logfile"
 
chown mythtv:mythtv "$logfile"
 
chown mythtv:mythtv "$logfile"
 
chmod a+rw "$logfile"
 
chmod a+rw "$logfile"
filename=$title.mkv" # can be customized
+
filename="$title.mp4" # can be customized
 
if [ -f "$outdir/$filename" ]
 
if [ -f "$outdir/$filename" ]
 
  # do not overwrite outfile, if already exists, change name
 
  # do not overwrite outfile, if already exists, change name
Line 66: Line 70:
 
fi
 
fi
 
outfile="$outdir/$filename"
 
outfile="$outdir/$filename"
 +
  
 
###Do some logging
 
###Do some logging
Line 72: Line 77:
 
echo "Target file: $outfile" >> "$logfile"
 
echo "Target file: $outfile" >> "$logfile"
 
echo "ChanId: $chanid Time: $starttime" >> "$logfile"
 
echo "ChanId: $chanid Time: $starttime" >> "$logfile"
 +
 +
 
####################
 
####################
 
#get width: you need mediainfo installed, see mediainfo.sourceforge.net
 
#get width: you need mediainfo installed, see mediainfo.sourceforge.net
Line 103: Line 110:
 
   echo "Userjob HD-TV starts because of with of $width" >> "$logfile"
 
   echo "Userjob HD-TV starts because of with of $width" >> "$logfile"
 
   # $HDCMDLINE is the commandline for HDTV
 
   # $HDCMDLINE is the commandline for HDTV
   HDCMDLINE='HandBrakeCLI -q 20.0 -e x264 -r 25 -a 1 -A $preferredaudio -E MP3 -B 128 -R 48 --mixdown dpl2 -f mkv --crop 0:0:0:0 -d -m -x b-adapt=2:rc-lookahead=50:ref=3:bframes=3:me=umh:subme=8:trellis=1:merange=20:direct=auto -i "$mythrecordingsdir/$file" -o "$outfile" 2>> "$logfile"'
+
   HDCMDLINE='HandBrakeCLI -q 20.0 -e x264 -r 25 -a 1 -A $audiostreamname -E MP3 -B 128 -R 48 --mixdown dpl2 -f mp4 --crop 0:0:0:0 -d -m -x b-adapt=2:rc-lookahead=50:ref=3:bframes=3:me=umh:subme=8:trellis=1:merange=20:direct=auto -i "$mythrecordingsdir/$file" -o "$outfile" --optimize 2>> "$logfile"'
   HandBrakeCLI -q 20.0 -e x264 -r 25 -a 1 -A $preferredaudio -E MP3 -B 128 -R 48 --mixdown dpl2 -f mkv --crop 0:0:0:0 -d -m -x b-adapt=2:rc-lookahead=50:ref=3:bframes=3:me=umh:subme=8:trellis=1:merange=20:direct=auto -i "$mythrecordingsdir/$file" -o "$outfile" 2>> "$logfile"
+
   HandBrakeCLI -q 20.0 -e x264 -r 25 -a 1 -A $audiostreamname -E MP3 -B 128 -R 48 --mixdown dpl2 -f mp4 --crop 0:0:0:0 -d -m -x b-adapt=2:rc-lookahead=50:ref=3:bframes=3:me=umh:subme=8:trellis=1:merange=20:direct=auto -i "$mythrecordingsdir/$file" -o "$outfile" --optimize 2>> "$logfile"
 
   if [ $? != 0 ]
 
   if [ $? != 0 ]
 
# There were errors in the Handbrake Run.  
 
# There were errors in the Handbrake Run.  
Line 137: Line 144:
 
        
 
        
 
       # $SDFCMDLINE is the commandline for SDtv-commercialFree
 
       # $SDFCMDLINE is the commandline for SDtv-commercialFree
       SDFCMDLINE="/usr/bin/HandBrakeCLI -q 3 -r 25 -a 1 -A $preferredaudio -E MP3 -B 128 -R 48 --mixdown dpl2 -f mkv --crop 0:0:0:0 -d -m -i $mythrecordingsdir/$file -o $outfile"  
+
       SDFCMDLINE="/usr/bin/HandBrakeCLI -q 3 -r 25 -a 1 -A $audiostreamname -E MP3 -B 128 -R 48 --mixdown dpl2 -f mp4 --crop 0:0:0:0 -d -m -i $mythrecordingsdir/$file -o $outfile --optimize"  
 
       echo "Commandline: $SDFCMDLINE" >> "$logfile"
 
       echo "Commandline: $SDFCMDLINE" >> "$logfile"
       HandBrakeCLI -q 3 -r 25 -a 1 -A $preferredaudio -E MP3 -B 128 -R 48 --mixdown dpl2 -f mkv --crop 0:0:0:0 -d -m -i "$mythrecordingsdir/$file" -o "$outfile"  2>> "$logfile"
+
       HandBrakeCLI -q 3 -r 25 -a 1 -A $audiostreamname -E MP3 -B 128 -R 48 --mixdown dpl2 -f mp4 --crop 0:0:0:0 -d -m -i "$mythrecordingsdir/$file" -o "$outfile" --optimize 2>> "$logfile"
 
       if [ $? != 0 ]
 
       if [ $? != 0 ]
 
# There were errors in the Handbrake Run.  
 
# There were errors in the Handbrake Run.  
Line 165: Line 172:
 
       #SD-TV Userjob is encoding to MPEG4 ASP aka DivX aka Xvid via FFMPEG via HandBrakeCLI
 
       #SD-TV Userjob is encoding to MPEG4 ASP aka DivX aka Xvid via FFMPEG via HandBrakeCLI
 
       # $SDCCMDLINE is the commandline for SDtv-Commercials
 
       # $SDCCMDLINE is the commandline for SDtv-Commercials
       SDCCMDLINE='/usr/bin/HandBrakeCLI -q 3 -r 25 -a 1 -A $preferredaudio -E MP3 -B 128 -R 48 --mixdown dpl2 -f mkv --crop 0:0:0:0 -d -m -i "$mythrecordingsdir/$file" -o "$outfile" 2>> "$logfile"'  
+
       SDCCMDLINE='/usr/bin/HandBrakeCLI -q 3 -r 25 -a 1 -A $audiostreamname -E MP3 -B 128 -R 48 --mixdown dpl2 -f mp4 --crop 0:0:0:0 -d -m -i "$mythrecordingsdir/$file" -o "$outfile" --optimize 2>> "$logfile"'  
 
        
 
        
 
       echo "Commandline: $SDCCMDLINE" >> "$logfile"
 
       echo "Commandline: $SDCCMDLINE" >> "$logfile"
       HandBrakeCLI -q 3 -r 25 -a 1 -A $preferredaudio -E MP3 -B 128 -R 48 --mixdown dpl2 -f mkv --crop 0:0:0:0 -d -m -i "$mythrecordingsdir/$file" -o "$outfile"  2>> "$logfile"       
+
       HandBrakeCLI -q 3 -r 25 -a 1 -A $audiostreamname -E MP3 -B 128 -R 48 --mixdown dpl2 -f mp4 --crop 0:0:0:0 -d -m -i "$mythrecordingsdir/$file" -o "$outfile" --optimize 2>> "$logfile"       
 
        
 
        
 
       if [ $? != 0 ]
 
       if [ $? != 0 ]
Line 201: Line 208:
  
 
exit 0
 
exit 0
 +
 
</pre>
 
</pre>

Revision as of 11:39, 11 December 2011

This script shall be called as MythTV user job. It transcodes the DVB recordings (mpeg files) using Handbrake. On a Phenom II X4 2,8Ghz it is roughly 5 times faster than mythnuv2mkv. All transcodings are single pass with constant quality as this results in the same quality as dual pass without the need for a second pass, thus its even faster. The only downside to dual pass is a slightly less predictable file size. As burning files to optical media is imho a thing of the past, exact file size hardly matters though.


Using Mediainfo it first checks wether the recording is HDTV.

HDTV will be reencoded with Mpeg4 AVC H264 to save space. All HDTV channels I can receive here in Germany are without commercials, so I don't bother running mythcommflag on them. In case your situation differs you'll have to modify the script.

SDTV will have commercials cut out if necessary and will then be transcoded to Mpeg4 ASP (H263, Xvid, DivX). The scipt will check the ChanID of the recording to decide wethere there are commercials, so you have to adapt the list of ChanIDs to your setup. I use Mpeg4 ASP instead of Mpeg4 AVC on SDTV recordings because the transcoding is much faster and it is easier to cut later on as mythcommflag isn't perfect. For manual cutting afterwards I use Avidemux

Audio: Currently the scipt just takes the first audio stream from the source file, transcodes it to Mp3 and names the stream "Deutsch-Stereo". You might want to at least adjust the stream name. I am planning to improve this script to preserve surround sound (AC3). As the script directly accesses the recording file no hacking / patching of MythTV is required, this script just needs some logic to detect if surround sound is present.


If you find any bugs or problems feel free to mail me at ares.drake@gmail.com


Version 1.1 Changelog

  • Change Container from MKV to MP4 optimized for streaming, reason: Compatibility with Philips UPnP Clients
  • Updated to use %DIR% instead of fixed path
  • some cleanup

Version 1.0 Changelog

  • Inital release


#!/bin/bash
# Save this as mythbrake.sh and make the file executable
# Written by Ares Drake, ares.drake@gmail.com
# Licenced under GPL v3
# This Script shall be called as MythTV user job. It transcodes the DVB recordings (mpeg files) using Handbrake. It first checks whether the recording is HDTV. If so it will be reencoded with H.264 to save space. SDTV will have commercials cut out if necessary and will then be transcoded to H.263 (Xvid, DivX). 
#
#USAGE:######################
# This Sript shall be called as a MythTV user job like as follows:
# /path/to/mythbrake.sh "%DIR" "%FILE%" "%CHANID%" "%STARTTIME%" "%TITLE%" "%SUBTITLE%"
#############################
#
#
#REQUIREMENTS################
# You need to have the following programs installed:
# mediainfo: http://mediainfo.sourceforge.net/
# handbrake with dependencies: http://www.handbrake.fr
#############################


###Some constants for user editing
logdir="/opt/mythtv/transcodelogs"
errormail="youremail@adress.com" # this email address will be informed in case of errors
outdir="/where/you/want/it" # specify directory where you want the transcoded file to be placed
audiostreamname="Deutsch-Stereo" #This is the label of the audio stream inside the final video file


###Define some basic variables
scriptstarttime=$(date +%F-%H%M%S)
mythrecordingsdir="$1" # specify directory where MythTV stores its recordings
file="$2"
subtitle="$(echo "$6" | sed 's/(//g' | sed 's/)//g' | sed 's/://g' | sed 's%/%_%g')"
chanid="$3"
starttime="$4"
title="$(echo "$5" | sed 's/(//g' | sed 's/)//g' | sed 's/:/_/g' | sed 's%/%_%g')"
logfile="$logdir/$scriptstarttime-$title.log"
touch "$logfile"
chown mythtv:mythtv "$logfile"
chmod a+rw "$logfile"
filename="$title.mp4" # can be customized
if [ -f "$outdir/$filename" ]
 # do not overwrite outfile, if already exists, change name
 then
 filename="filename-$scriptstarttime"
fi
outfile="$outdir/$filename"


###Do some logging
echo "Transcode job $title starting at $scriptstarttime" >> "$logfile"
echo "Original file: $mythrecordingsdir/$file" >> "$logfile"
echo "Target file: $outfile" >> "$logfile"
echo "ChanId: $chanid Time: $starttime" >> "$logfile"


####################
#get width: you need mediainfo installed, see mediainfo.sourceforge.net
width=$(mediainfo --Inform="Video;%Width%" "$mythrecordingsdir/$file")
  if [ $? != 0 ]
    # There were errors with Mediainfo. 
    then
    scriptstoptime=$(date +%F-%H:%M:%S)
    echo "Error prior to encoding at $scriptstoptime" >> "$logfile"
    echo "Mediainfo encountered an error. Maybe mediainfo is not installed, or not in your path" >> "$logfile"
    echo "Mediainfo encountered an error. Maybe mediainfo is not installed, or not in your path"
    mail -s "Mythtv Mediainfo Error on $HOSTNAME" "$errormail" < "$logfile"
    mv "$logfile" "$logfile-FAILED"
    exit 1
    else
    echo "Mediainfo Run successful." >> "$logfile"
  fi
fullmediainfo=(mediainfo $mythrecordingsdir/"$file")
##############################################################



### Transcoding starts here, in 3 differend versions: HDTV w/o commercials, SDTV w/ and w/o commercials.


# width >=1280
# currently this can only be ARD HD, ZDF HD or ARTE HD, so no commercials
# Userjob for HDTV: Re-Encode in AVC H.264: saves space, but keeps H.264, x264 via HandbrakeCLI
if [ $width -ge 1280 ]
  then
  echo "Userjob HD-TV starts because of with of $width" >> "$logfile"
  # $HDCMDLINE is the commandline for HDTV
  HDCMDLINE='HandBrakeCLI -q 20.0 -e x264 -r 25 -a 1 -A $audiostreamname -E MP3 -B 128 -R 48 --mixdown dpl2 -f mp4 --crop 0:0:0:0 -d -m -x b-adapt=2:rc-lookahead=50:ref=3:bframes=3:me=umh:subme=8:trellis=1:merange=20:direct=auto -i "$mythrecordingsdir/$file" -o "$outfile" --optimize 2>> "$logfile"'
  HandBrakeCLI -q 20.0 -e x264 -r 25 -a 1 -A $audiostreamname -E MP3 -B 128 -R 48 --mixdown dpl2 -f mp4 --crop 0:0:0:0 -d -m -x b-adapt=2:rc-lookahead=50:ref=3:bframes=3:me=umh:subme=8:trellis=1:merange=20:direct=auto -i "$mythrecordingsdir/$file" -o "$outfile" --optimize 2>> "$logfile"
  if [ $? != 0 ]
	# There were errors in the Handbrake Run. 
	then
	scriptstoptime=$(date +%F-%H:%M:%S)
	echo "Transcoding-Error at $scriptstoptime" >> "$logfile"
	echo "Interrupted file $outfile" >> "$logfile"
	echo "###################################" >> "$logfile"
	echo $fullmediainfo >> "$logfile"
	mail -s "Mythtv Transcoding Error on $HOSTNAME" "$errormail" < "$logfile"
        mv "$logfile" "$logfile-FAILED"
	exit 1
	else
	echo "Transcode Run successfull." >> "$logfile"
      fi


#width <= 720
elif [ $width -le 720 ]
  then
 # this is SDTV, so it could be either with or without commercials. We check for commercials by comparing to ChanID list.

    if [ $chanid == 3007 -o $chanid == 29014 -o $chanid == 30014 -o $chanid == 30107 ]
    #ChanID without commercials: 3007 3sat; ZDF info; 29014 & 3014 ZDF neo; ZDF theater; 30107 BayrFS Nord; BayrFS Süd; SWR BW; RBB Berlin; WDR Köln; BR alpha; SR
    # better option would be to pull the commercial-free flag from the database, but
    # then i would advise against manual access to the database when using a language
    # such as bash with no mysql support.
      then 
      #This is a channel without commercials
      echo "Userjob SD-TV ohne Werbung startet" >> "$logfile"
      #SD-TV Userjob is encoding to MPEG4 ASP aka DivX aka Xvid via FFMPEG via HandBrakeCLI
      
      # $SDFCMDLINE is the commandline for SDtv-commercialFree
      SDFCMDLINE="/usr/bin/HandBrakeCLI -q 3 -r 25 -a 1 -A $audiostreamname -E MP3 -B 128 -R 48 --mixdown dpl2 -f mp4 --crop 0:0:0:0 -d -m -i $mythrecordingsdir/$file -o $outfile --optimize" 
      echo "Commandline: $SDFCMDLINE" >> "$logfile"
      HandBrakeCLI -q 3 -r 25 -a 1 -A $audiostreamname -E MP3 -B 128 -R 48 --mixdown dpl2 -f mp4 --crop 0:0:0:0 -d -m -i "$mythrecordingsdir/$file" -o "$outfile" --optimize  2>> "$logfile"
      if [ $? != 0 ]
	# There were errors in the Handbrake Run. 
	then
	scriptstoptime=$(date +%F-%H:%M:%S)
	echo "Transcoding-Error at $scriptstoptime" >> "$logfile"
	echo "Broken File $outfile" >> "$logfile"
	echo "###################################" >> "$logfile"
	echo $fullmediainfo >> "$logfile"
	mail -s "Mythtv Transcoding Error on $HOSTNAME" "$errormail" < "$logfile"
        mv "$logfile" "$logfile-FAILED"
	exit 1
	else
	echo "Transcode Run successful." >> "$logfile"     
      fi

    else
      # We have a channel with commercials, so flag & cut them out first.
      echo "Userjob SD-TV mit Werbung startet" >> "$logfile"
      /usr/bin/mythcommflag -c "$chanid" -s "$starttime" --gencutlist
      /usr/bin/mythtranscode --chanid "$chanid" --starttime "$starttime" --mpeg2 --honorcutlist
      /usr/bin/mythcommflag --file "$file" --rebuild
      #Finished commercial cutting, following is encoding as above

      #SD-TV Userjob is encoding to MPEG4 ASP aka DivX aka Xvid via FFMPEG via HandBrakeCLI
      # $SDCCMDLINE is the commandline for SDtv-Commercials
      SDCCMDLINE='/usr/bin/HandBrakeCLI -q 3 -r 25 -a 1 -A $audiostreamname -E MP3 -B 128 -R 48 --mixdown dpl2 -f mp4 --crop 0:0:0:0 -d -m -i "$mythrecordingsdir/$file" -o "$outfile" --optimize 2>> "$logfile"' 
      
      echo "Commandline: $SDCCMDLINE" >> "$logfile"
      HandBrakeCLI -q 3 -r 25 -a 1 -A $audiostreamname -E MP3 -B 128 -R 48 --mixdown dpl2 -f mp4 --crop 0:0:0:0 -d -m -i "$mythrecordingsdir/$file" -o "$outfile" --optimize  2>> "$logfile"      
      
      if [ $? != 0 ]
	# There were errors in the Handbrake Run. 
	then
	scriptstoptime=$(date +%F-%H:%M:%S)
	echo "Transcoding-Error at $scriptstoptime" >> "$logfile"
	echo "Broken File $outfile" >> "$logfile"
	echo "###################################" >> "$logfile"
	echo $fullmediainfo >> "$logfile"
	mail -s "Mythtv Transcoding Error on $HOSTNAME" "$errormail" < "$logfile"
        mv "$logfile" "$logfile-FAILED"
	exit 1
	else
	echo "Transcode Run successful." >> "$logfile"
      fi    
    fi

#720<width<1280 or error getting width: dunno whats going on here, abort
else
    echo "Error: 720<width<1280, undefined condition, aborting" >> "$logfile"
    echo "###################################" >> "$logfile"
    echo $fullmediainfo >> "$logfile"
    mail -s "Mythtv Transcoding Error on $HOSTNAME" "$errormail" < "$logfile"
    mv "$logfile" "$logfile-FAILED"
    exit 1
fi

  scriptstoptime=$(date +%F-%H:%M:%S)
  echo "Successfully finished at $scriptstoptime" >> "$logfile"
  echo "Transcoded file: $outfile" >> "$logfile"

exit 0