<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">Hello,<div><br></div><div>I have been having this strangest problem with MythTV Jobs command. If i manually type via CLI directly it converts the recording into mp4 with burnt subtitle on it by extracting the recorded shows via&nbsp;<span class="Apple-style-span" style="font-family: arial, sans-serif; font-size: 17px; border-collapse: collapse; white-space: pre; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; ">ccextractor</span>&nbsp;then burn it and resize it via mencoder and it went process without any hitches. &nbsp;but however if i add it to MythTV auto-job it ALWAYS skips&nbsp;<span class="Apple-style-span" style="font-family: arial, sans-serif; font-size: 17px; border-collapse: collapse; white-space: pre; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; ">ccextractor </span>process (or more like refuse to do&nbsp;<span class="Apple-style-span" style="font-family: arial, sans-serif; font-size: 17px; border-collapse: collapse; white-space: pre; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; ">ccextractor</span>) and goes directly to mencoder. I am somewhat experinced with linux but i dont know how to debug or anything. i was hoping someone could have some kind of idea why it keeps skipping ccextractor. it is very important for me since i am deaf and i can't hear so i really rely on captions. and mythtv&nbsp;(to be more specific MythDora)&nbsp;&nbsp;is the main reason i choose for my tivo.&nbsp;</div><div><br></div><div>here is my commands process.</div><div><br></div><div>for shell script (mythiphone.sh) at the bottom</div><div>---------------------------------------------------------------------------</div><div><br></div><div><div>#!/bin/bash</div><div><br></div><div>if [ ! $# == 2 ]; then</div><div>&nbsp;&nbsp;echo "Usage: $0 directory file"</div><div>&nbsp;&nbsp;exit</div><div>fi</div><div><br></div><div>directory="$1";</div><div>file="$2";</div><div>srtfile="${file/mpg/srt}";</div><div><br></div><div>ccextractor "${directory}/${file}";</div><div><br></div><div>wait;</div><div><br></div><div><div>mencoder "${directory}/${file}" -sub "${directory}/${srtfile}"&nbsp;-o "${directory}/${file}.mp4" -vf scale=480:-10,harddup -oac faac&nbsp;-faacopts mpeg=4:object=2:raw:br=128 -of lavf -lavfopts format=mp4 -ovc x264&nbsp;-x264encopts bitrate=368:qcomp=0.6:qp_min=10:qp_max=51:qp_step=4:vbv_maxrate=4000:vbv_bufsize=3000:level_idc=30:dct_decimate:me=umh:me_range=16:keyint=250:keyint_min=25:nofast_pskip:global_header:nocabac:direct_pred=auto:nomixed_refs:trellis=1 -subfont-text-scale 3;</div><div><br></div><div><br></div></div><div><div>wait;</div><div><br></div><div>rm "${directory}/${srtfile}"; &nbsp;</div><div><br></div><div>then in MythTV jobs command i put it in</div><div>"User Job#1 Command: /path/to/my/script/mythipod.sh %DIR% %FILE%</div><div><br></div><div>thanks!</div><div>Jason</div><div><br></div></div><div><br></div></div></body></html>