<div dir="ltr">On Mon, Sep 23, 2013 at 11:05 AM, Ian Evans <span dir="ltr">&lt;<a href="mailto:dheianevans@gmail.com" target="_blank">dheianevans@gmail.com</a>&gt;</span> wrote:<br><div class="gmail_extra"><div class="gmail_quote">
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">
<div class="im">On Mon, Sep 23, 2013 at 10:02 AM, Jim Stichnoth <span dir="ltr">&lt;<a href="mailto:stichnot@gmail.com" target="_blank">stichnot@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div>On Sun, Sep 22, 2013 at 2:23 PM, Ian Evans <span dir="ltr">&lt;<a href="mailto:dheianevans@gmail.com" target="_blank">dheianevans@gmail.com</a>&gt;</span> wrote:<br>

</div><div class="gmail_extra"><br><div class="gmail_quote">
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">

<div><div>On Sun, Sep 22, 2013 at 9:41 AM, Jim Stichnoth <span dir="ltr">&lt;<a href="mailto:stichnot@gmail.com" target="_blank">stichnot@gmail.com</a>&gt;</span> wrote:<br>
</div><div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div dir="ltr">Try copying the file from that 3-minute sample, or from the original recording, into your Video Gallery directory, then do a rescan from the Video Gallery, and see if the file plays correctly.  If it does, this suggests incorrect markup for the recording.  &quot;mythutil --clearseektable --chanid xxx --starttime yyy&quot; doesn&#39;t currently clear this particularly markup, so to continue testing, one would need to directly execute a DB query to clear the extra markup.<br>


</div></blockquote></div></div><div><div><div><br></div></div><div>I copied it over to Mythvideo and was able to seek/fast forward.<br></div><div><br></div></div></div></div></div></blockquote><div>OK, sounds like extra markup is getting in your way then.  If you&#39;re comfortable with using raw mysql commands, try this:</div>


<div><br></div><div>  select * from recordedmarkup where chanid=xxx and starttime=yyy and type&gt;=33;<br></div></div></div></div></blockquote></div><div><br><br>chanid        starttime                  mark type data<br>
1019          2013-09-18 06:00:00 0        33 1026<br>
1019          2013-09-18 06:00:00 0        34 92396<br></div><div><br></div></div></div></div></blockquote><div>33=duration, so it thinks the program is 1.026s long.  34=framecount, and 92K frames at 25fps is about an hour, so that seems plausible.  I bet this will fix the problem:</div>
<div><br></div><div>  <span style="color:rgb(0,0,0);font-family:arial,sans-serif;font-size:13px">delete from recordedmarkup where chanid=xxx and starttime=yyy and type=33;</span></div><div><span style="color:rgb(0,0,0);font-family:arial,sans-serif;font-size:13px"><br>
</span></div><div><span style="color:rgb(0,0,0);font-family:arial,sans-serif;font-size:13px">I don&#39;t know what Handbrake has done to the framerate/framecount, so it might be safer to use &quot;type&gt;=33&quot; instead of just &quot;type=33&quot;.</span></div>
<div><span style="color:rgb(0,0,0);font-family:arial,sans-serif;font-size:13px"><br></span></div><div><span style="color:rgb(0,0,0);font-family:arial,sans-serif;font-size:13px">Jim</span></div></div></div></div>