Icecast Streaming Media Server Forum Index Icecast Streaming Media Server
Icecast is a Xiph Foundation Project
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Can I stream a static file per mount point?

 
Post new topic   Reply to topic    Icecast Streaming Media Server Forum Index -> Icecast Server
View previous topic :: View next topic  
Author Message
Nonapeptide



Joined: 08 Sep 2012
Posts: 40
Location: Scottsdale, Arizona

PostPosted: Wed Nov 13, 2013 9:37 pm    Post subject: Can I stream a static file per mount point? Reply with quote

I would like to have several defined mount points on Windows Icecast 2.3.3-kh8 that each reference a specific audio file. So, for example, /chapter1 would point to chapter1.mp3, /chapter2 would point to chapter2.mp3. However, as I've been scouring the config file, it appears that I cannot tie a single mount point to a single static file. It appears that I can only serve static files in the <path> <webroot> folder, and not in any way tie to a mount point. The reason I'd like to tie it to a mount point is to also take advantage of the per-mountpoint <authentication type="url"> capabilities where different mount points do different things.

Unless my understanding of the documentation is completely bankrupt, it does not appear that one can do that. Or can I?! I'm thinking I could abuse the <fallback-mount> tag to serve up a static file when nothing is streaming to the mount, and of course I'd never stream anything to that mount point so the static file would always be served up. Is there some potential pitfall that I'm not seeing? Or a better way?
Back to top
View user's profile Send private message
karlH
Code Warrior
Code Warrior


Joined: 13 Jun 2005
Posts: 5476
Location: UK

PostPosted: Thu Nov 14, 2013 1:01 am    Post subject: Reply with quote

Not sure if you actually want to change the name aspect like with an alias but you can specify a <mount> block for the files in question, these will include the extension. You can use auth for a file name, it's not clear if you want <limit-rate> in that as well but that should be fine as well.

<mount-name>/chapter2.mp3</mount-name>
<authentication ....>
...
</authentication>

You can use alias to have a no extension name to that.

karl.
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Nonapeptide



Joined: 08 Sep 2012
Posts: 40
Location: Scottsdale, Arizona

PostPosted: Fri Nov 15, 2013 10:24 pm    Post subject: Reply with quote

karlH wrote:
Not sure if you actually want to change the name aspect like with an alias but you can specify a <mount> block for the files in question, these will include the extension. You can use auth for a file name, it's not clear if you want <limit-rate> in that as well but that should be fine as well.

<mount-name>/chapter2.mp3</mount-name>
<authentication ....>
...
</authentication>

You can use alias to have a no extension name to that.

karl.

Ohh, so a mount-name will look for a live stream coming in, but also look for a filename in the web root folder in the absence of a stream? So here's how I just tested that. Here's my <paths> block:

Code:
<paths>
   <logdir>./logs</logdir>
   <webroot>./web</webroot>
   <adminroot>./admin</adminroot>
   <alias source="/" dest="/index.html"/>
</paths>


I placed an mp3 file named arrow.mp3 into the ./web folder. The following <mount> section was added to the config file:

Code:
<mount>
          <mount-name>/arrow.mp3</mount-name>
</mount>


In the access log I see these two lines when I attempt to access the /arrow.mp3 mount point:

Code:
68.231.66.6 - - [15/Nov/2013:15:14:37 -0700] "GET /arrow.mp3 HTTP/1.1" 200 3081 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.48 Safari/537.36" 0
68.231.66.6 - - [15/Nov/2013:15:14:37 -0700] "GET /arrow.mp3 HTTP/1.1" 206 3136 "http://streaming401ic.network1sports.com/arrow.mp3" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.48 Safari/537.36" 0


Okay, so I get a 200 OK response, and then a 206 partial content response. However, when my web browser attempts to open the file, I get a visible media plugin, but I cannot play the audio:



In the error log I see the following:

Code:
[2013-11-15  15:14:37] INFO fserve/open_fh lookup of "/arrow.mp3"
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 8190 (8192)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 48 (8192)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 51 (8144)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 41 (8093)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 31 (8052)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 33 (8021)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 13 (7988)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 13 (7975)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 23 (7962)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 24 (7939)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 4 (7915)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 71 (7911)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 41 (7840)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 51 (7799)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 32 (7748)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 2 (7716)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 18 (7714)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 69 (7696)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 69 (7627)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 19 (7558)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 33 (7539)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 82 (7506)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 101 (7424)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 33 (7323)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 83 (7290)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 100 (7207)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 203 (7107)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 159 (6904)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 385 (6745)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 50 (6360)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 183 (6310)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 91 (6127)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 61 (6036)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 206 (5975)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 325 (5769)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 29 (5444)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 15 (5415)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 23 (5400)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 20 (5377)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 52 (5357)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 14 (5305)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 14 (5291)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 52 (8192)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 3 (8140)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 71 (8137)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 3 (8066)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 90 (8063)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 25 (7973)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 277 (7948)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 153 (7671)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 38 (7518)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 5 (7480)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 46 (7475)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 119 (7429)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 192 (7310)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 22 (7118)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 181 (7096)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 49 (6915)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 71 (6866)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 68 (6795)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 433 (6727)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 71 (6294)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 174 (6223)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 236 (6049)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 57 (5813)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 185 (5756)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 67 (5571)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 57 (5504)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 45 (5447)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 310 (5402)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 10 (5092)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 70 (5082)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 120 (5012)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 16 (4892)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 11 (4876)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 53 (4865)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 40 (4812)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 49 (4772)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 37 (4723)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 29 (4686)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 43 (4657)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 119 (4614)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 20 (4495)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 57 (4475)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 29 (4418)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 68 (4389)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 55 (4321)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 28 (4266)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 82 (4238)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 111 (4156)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 45 (4045)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 54 (4000)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 3 (3946)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 14 (3943)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 7 (3929)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 43 (3922)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 18 (3879)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 38 (3861)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 28 (3823)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 46 (3795)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 28 (3749)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 230 (3721)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 553 (3491)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 196 (2938)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 94 (2742)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 30 (2648)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 40 (2618)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 98 (2578)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 42 (2480)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 203 (2438)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 18 (2235)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 35 (2217)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 56 (2182)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 10 (2126)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 165 (2116)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 352 (1951)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 128 (1599)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 11 (1471)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 19 (1460)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 10 (1441)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 137 (1431)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 34 (1294)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 4 (1260)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 11 (1256)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 35 (1245)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 6 (1210)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 147 (1204)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 166 (1057)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 58 (891)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 21 (833)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 10 (812)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 17 (802)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 156 (785)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 6 (629)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 66 (623)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 29 (557)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 89 (528)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 59 (439)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 32 (380)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 81 (348)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 87 (267)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 79 (8192)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 232 (8113)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 141 (7881)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 15 (7740)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 45 (7725)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 127 (7680)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 90 (7553)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 61 (7463)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 20 (7402)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync after 20k on 68.231.66.6
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 8190 (8192)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 48 (8192)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 51 (8144)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 41 (8093)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 31 (8052)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 33 (8021)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 13 (7988)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 13 (7975)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 23 (7962)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 24 (7939)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 4 (7915)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 71 (7911)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 41 (7840)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 51 (7799)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 32 (7748)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 2 (7716)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 18 (7714)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 69 (7696)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 69 (7627)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 19 (7558)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 33 (7539)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 82 (7506)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 101 (7424)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 33 (7323)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 83 (7290)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 100 (7207)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 203 (7107)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 159 (6904)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 385 (6745)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 50 (6360)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 183 (6310)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 91 (6127)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 61 (6036)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 206 (5975)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 325 (5769)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 29 (5444)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 15 (5415)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 23 (5400)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 20 (5377)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 52 (5357)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 14 (5305)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 14 (5291)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 52 (8192)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 3 (8140)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 71 (8137)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 3 (8066)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 90 (8063)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 25 (7973)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 277 (7948)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 153 (7671)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 38 (7518)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 5 (7480)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 46 (7475)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 119 (7429)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 192 (7310)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 22 (7118)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 181 (7096)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 49 (6915)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 71 (6866)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 68 (6795)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 433 (6727)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 71 (6294)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 174 (6223)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 236 (6049)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 57 (5813)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 185 (5756)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 67 (5571)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 57 (5504)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 45 (5447)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 310 (5402)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 10 (5092)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 70 (5082)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 120 (5012)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 16 (4892)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 11 (4876)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 53 (4865)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 40 (4812)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 49 (4772)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 37 (4723)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 29 (4686)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 43 (4657)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 119 (4614)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 20 (4495)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 57 (4475)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 29 (4418)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 68 (4389)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 55 (4321)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 28 (4266)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 82 (4238)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 111 (4156)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 45 (4045)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 54 (4000)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 3 (3946)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 14 (3943)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 7 (3929)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 43 (3922)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 18 (3879)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 38 (3861)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 28 (3823)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 46 (3795)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 28 (3749)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 230 (3721)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 553 (3491)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 196 (2938)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 94 (2742)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 30 (2648)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 40 (2618)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 98 (2578)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 42 (2480)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 203 (2438)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 18 (2235)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 35 (2217)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 56 (2182)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 10 (2126)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 165 (2116)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 352 (1951)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 128 (1599)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 11 (1471)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 19 (1460)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 10 (1441)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 137 (1431)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 34 (1294)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 4 (1260)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 11 (1256)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 35 (1245)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 6 (1210)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 147 (1204)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 166 (1057)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 58 (891)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 21 (833)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 10 (812)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 17 (802)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 156 (785)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 6 (629)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 66 (623)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 29 (557)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 89 (528)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 59 (439)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 32 (380)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 81 (348)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 87 (267)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 79 (8192)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 232 (8113)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 141 (7881)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 15 (7740)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 45 (7725)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 127 (7680)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 90 (7553)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 61 (7463)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync on 68.231.66.6, re-checking after skipping 20 (7402)
[2013-11-15  15:14:37] INFO mpeg/mpeg_complete_frames no frame sync after 20k on 68.231.66.6


Hmm, I'm stumped. Any idea what might be causing the problem?
Back to top
View user's profile Send private message
karlH
Code Warrior
Code Warrior


Joined: 13 Jun 2005
Posts: 5476
Location: UK

PostPosted: Sat Nov 16, 2013 4:00 am    Post subject: Reply with quote

without knowing anything about the file in question, it's hard to say, there has been a few tweaks to handle re-syncs better but I didn't think there would be a big problem in kh8 or kh9 and reading mp3 files. Is kh9 better with this?

karl.
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Nonapeptide



Joined: 08 Sep 2012
Posts: 40
Location: Scottsdale, Arizona

PostPosted: Wed Dec 04, 2013 9:17 pm    Post subject: Reply with quote

karlH wrote:
without knowing anything about the file in question, it's hard to say, there has been a few tweaks to handle re-syncs better but I didn't think there would be a big problem in kh8 or kh9 and reading mp3 files. Is kh9 better with this?

karl.

Sorry for the long delay in responding. Work with this client is hit and miss so sometimes it takes a while to get back to a topic. As for the MP3 itself, I can tell you the basic metadata for it:

Code:
Kind: MPEG Audio file
Size: 9.8MB
Bit Rate: 261 kbps (VBR)
Sample Rate: 44.100 kHz
Format: MPEG-1, Layer 3
Channels: Joint Stereo
ID3 Tag: v2.3
Encoded with: LAME3.97


As for the server itself, I can't install the latest IceCast KH on the production servers, however if it's an acceptable substitute I installed the latest version on a Windows 8 test PC. Here's the scenario as it stands:

The "server": Windows 8 64-bit (Version 6.2 Build 9200)
IceCast: Icecast 2.3.3-kh9 build 0-g5abf46c
The client: Mac OS X 10.8 running Chrome, FireFox, and Safari

I put the same MP3 in the web directory and here's what I see in the access.log in Chrome (192.168.11.147 is my Macintosh client seeking to listen to arrow.mp3 which is hosted on 192.168.11.125):

Code:
192.168.11.147 - - [04/Dec/2013:12:41:43 -0800] "GET /arrow.mp3 HTTP/1.1" 200 3081 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36" 0
192.168.11.147 - - [04/Dec/2013:12:41:43 -0800] "GET /arrow.mp3 HTTP/1.1" 206 3136 "http://192.168.11.125:8000/arrow.mp3" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36" 0


The error.log:

Code:

[2013-12-04  12:41:43] INFO fserve/open_fh lookup of "/arrow.mp3"
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 8190 (8192)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 48 (8192)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 51 (8144)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 41 (8093)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 31 (8052)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 33 (8021)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 13 (7988)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 13 (7975)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 23 (7962)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 24 (7939)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 4 (7915)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 71 (7911)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 41 (7840)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 51 (7799)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 32 (7748)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 2 (7716)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 18 (7714)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 69 (7696)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 69 (7627)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 19 (7558)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 33 (7539)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 82 (7506)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 101 (7424)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 33 (7323)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 83 (7290)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 100 (7207)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 203 (7107)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 159 (6904)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 385 (6745)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 50 (6360)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 183 (6310)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 91 (6127)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 61 (6036)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 206 (5975)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 325 (5769)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 29 (5444)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 15 (5415)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 23 (5400)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 20 (5377)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 52 (5357)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 14 (5305)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 14 (5291)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 52 (8192)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 3 (8140)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 71 (8137)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 3 (8066)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 90 (8063)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 25 (7973)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 277 (7948)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 153 (7671)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 38 (7518)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 5 (7480)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 46 (7475)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 119 (7429)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 192 (7310)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 22 (7118)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 181 (7096)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 49 (6915)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 71 (6866)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 68 (6795)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 433 (6727)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 71 (6294)
[2013-12-04  12:41:43] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 174 (6223)
[2013-12-04  12:41:44] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 236 (6049)
[2013-12-04  12:41:44] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 57 (5813)
[2013-12-04  12:41:44] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 185 (5756)
[2013-12-04  12:41:44] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 67 (5571)
[2013-12-04  12:41:44] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 57 (5504)
[2013-12-04  12:41:44] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 45 (5447)
[2013-12-04  12:41:44] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 310 (5402)
[2013-12-04  12:41:44] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 10 (5092)
[2013-12-04  12:41:44] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 70 (5082)
[2013-12-04  12:41:44] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 120 (5012)
[2013-12-04  12:41:44] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 16 (4892)
[2013-12-04  12:41:44] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 11 (4876)
[2013-12-04  12:41:44] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 53 (4865)
[2013-12-04  12:41:44] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 40 (4812)
[2013-12-04  12:41:44] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 49 (4772)
[2013-12-04  12:41:44] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 37 (4723)
[2013-12-04  12:41:44] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 29 (4686)
[2013-12-04  12:41:44] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 43 (4657)
[2013-12-04  12:41:44] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 119 (4614)
[2013-12-04  12:41:44] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 20 (4495)
[2013-12-04  12:41:44] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 57 (4475)
[2013-12-04  12:41:44] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 29 (4418)
[2013-12-04  12:41:44] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 68 (4389)
[2013-12-04  12:41:44] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 55 (4321)
[2013-12-04  12:41:44] INFO mpeg/mpeg_complete_frames no frame sync on 192.168.11.147, re-checking after skipping 28 (4266)


And on and on and on. In the browser itself, I see the same old user interface element that won't let me play the audio:



I get the common HTTP 200 response and then an immediate HTTP 206 response like I always see when working with IceCast:

Code:
GET /arrow.mp3 HTTP/1.1
Host: 192.168.11.125:8000
Connection: keep-alive
Cache-Control: max-age=0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8

HTTP/1.0 200 OK
Content-Length: 10175503
Content-Type: audio/mpeg
Server: Icecast 2.3.3-kh9
Cache-Control: no-cache
Pragma: no-cache
Expires: Mon, 26 Jul 1997 05:00:00 GMT

GET /arrow.mp3 HTTP/1.1
Host: 192.168.11.125:8000
Connection: keep-alive
Accept-Encoding: identity;q=1, *;q=0
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36
Accept: */*
Referer: http://192.168.11.125:8000/arrow.mp3
Accept-Language: en-US,en;q=0.8
Range: bytes=0-

HTTP/1.0 206 Partial Content
Content-Type: audio/mpeg
Content-Length: 10175503
Content-Range: bytes 0-10175502/10175503
Server: Icecast 2.3.3-kh9
Cache-Control: no-cache
Pragma: no-cache
Expires: Mon, 26 Jul 1997 05:00:00 GMT


Interestingly in FireFox on my Mac I see:



But I don't think the forever "Loading..." means anything. I suspect it's just a UI element that wasn't terribly thought out for a circumstance like this.

I know it's apple to oranges, but when I put the static file in a directory that an Apache server is serving up, the audio is played, but most interestingly I see this when inspecting the HTTP conversation in Chrome:



As opposed to IceCast where I see this failed response:



And yet the HTTP responses appear the same wether I get the file successfully from an Apache server or from IceCast. 200 then 206 partial content. I'm confused. Confused

Any thoughts? (Wow, this post got longer than I expected)
Back to top
View user's profile Send private message
karlH
Code Warrior
Code Warrior


Joined: 13 Jun 2005
Posts: 5476
Location: UK

PostPosted: Thu Dec 05, 2013 2:47 am    Post subject: Reply with quote

you seem to be asking 2 things here, the first is the resync issue. obviously I don't have your mp3 file so cannot test that here, but I do have a win32 build of the latest work if you wish to try that in your test environment

http://karlheyes.github.com/icecast-2.3.3-kh9-5_setup.exe

There will be some resync as any ID3 will be skipped over but ADTS frame alignment should be ok for most of your file (usually it's just the start or end, if there are issues).

As for the second issue, What request/response headers do you see with apache in the same situation.

karl.
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Nonapeptide



Joined: 08 Sep 2012
Posts: 40
Location: Scottsdale, Arizona

PostPosted: Wed Jan 29, 2014 6:46 pm    Post subject: Reply with quote

Well I'm horribly tardy with this response. Confused

karlH wrote:
you seem to be asking 2 things here, the first is the resync issue. obviously I don't have your mp3 file so cannot test that here, but I do have a win32 build of the latest work if you wish to try that in your test environment

http://karlheyes.github.com/icecast-2.3.3-kh9-5_setup.exe


Since KH9 is already out, and 10 is likely to be out by the time I have a maintenance window, I'll just wait for that. I thought this was all part and parcel of the same issue, though. My suspicion was that the resync problem was indicative of why the static MP3 wouldn't stream. However...


karlH wrote:
As for the second issue, What request/response headers do you see with apache in the same situation.

karl.

I attempted to stream a static MP3 through IceCast that had been the result of a <dump-file> directive, and that static MP3 was able to be streamed. So there's something that's disliked about that original MP3 which was acquired completely outside of IceCast. It was a test file selected from a library of music (DRM free; I made sure of that). Now that I can blame the specific file, I can go somewhere. However...

...that part of the project has been postponed. Lack of funding has a funny way of ceasing project development. Very Happy
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Icecast Streaming Media Server Forum Index -> Icecast Server All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2002 phpBB Group
subRebel style by ktauber