Streaming halts but local playback of same file works

For questions and discussion that is NOT (I repeat NOT) specific to a certain Operating System.
Legend
New Cone
New Cone
Posts: 4
Joined: 23 Jun 2009 03:18

Streaming halts but local playback of same file works

Postby Legend » 23 Jun 2009 03:25

I managed to create an adhoc network between two of my laptops and wrote a program to copy a video file from the other machine if one is not available locally. So lets say there are two machines A{1} and B{2} where 1, 2 are the videos that they have. Now, I am redirecting the request of VLC Player (video playing software) to my program after which I am forming my own headers and replying back. The playback works perfectly when the file is played locally. But lets say that B requests for file 1 (which is on A), then there is a small message exchange after which A starts transferring the file and B writes the file into the socket where VLC is listening and the streaming starts.

Now the problem is, after 3-4 seconds, the video playback stops but the file downloading continues. If I hit the pause button and then the playback button after 4-5 seconds, the playback is ok otherwise the picture remains frozen. I am not sure where to start but am guessing the problem has something to do with buffer sizes which are something like this:

When B connects to A, A writes into a buffer of size 1024.
B reads from the socket into a buffer of size 1024.
B then writes into the socket where VLC is listening with a buffer of size 1024.

The snippet where B writes to VLC as well as a file locally is shown here:

Code: Select all

while((bytesRead = is.read(fileByteArray, 0, fileByteArray.length)) > 0) { out.write(fileByteArray, 0, bytesRead); //Output stream of VLC player socket bos.write(fileByteArray, 0, bytesRead); //Buffered output stream into a file } out.flush();


Can someone please advice me on where to start troubleshooting for this problem? One useful hint I could gather is that, once the playback is complete, the machine looks first in its local cache so it finds the newly downloaded video and starts playing without any problem....

The DJ
Cone Master
Cone Master
Posts: 5987
Joined: 22 Nov 2003 21:52
VLC version: git
Operating System: Mac OS X
Location: Enschede, Holland
Contact:

Re: Streaming halts but local playback of same file works

Postby The DJ » 23 Jun 2009 03:46

what kind of files are we talking about ? And is the server sending at the same/higher datarate as the video is using (otherwise the cache will drain, and you get these issues) ?
Don't use PMs for support questions.

Legend
New Cone
New Cone
Posts: 4
Joined: 23 Jun 2009 03:18

Re: Streaming halts but local playback of same file works

Postby Legend » 23 Jun 2009 03:58

Oh this is interesting. I am a little new to streaming videos so didn't know about these things. Basically, I am trying to stream MPEG-2 files. When I opened the file using gspot, this is what I can see:

Code: Select all

Size: 34.8 MB (35,652 KB / 36,507,648 bytes) Container: Sys Bitrate: 7875 kb/s Audio: 384 kb/s
I was using a buffer size of 1K to 128K but it doesn't seem to show any improvement. So does that mean I should use caches of the order of mega bytes?

Thanks

The DJ
Cone Master
Cone Master
Posts: 5987
Joined: 22 Nov 2003 21:52
VLC version: git
Operating System: Mac OS X
Location: Enschede, Holland
Contact:

Re: Streaming halts but local playback of same file works

Postby The DJ » 23 Jun 2009 14:09

What probably happens is that your data runs out, VLC requests new data, and your transfer takes too long to deliver that new data, thus causing such high latency in the input side, that vlc's internal cache (300ms worth of data) runs out before your interface delivers the new data. Data should be delivered as continuously as possible with as low a delay as possible, especially when using the "file" input of vlc. (Anyways, i can't tell without debug if VLC underruns it's own buffer or something.
Don't use PMs for support questions.

Legend
New Cone
New Cone
Posts: 4
Joined: 23 Jun 2009 03:18

Re: Streaming halts but local playback of same file works

Postby Legend » 23 Jun 2009 14:21

Thanks... In that case, do you suggest of any other way of debugging VLC when using it like the way I am? I am currently opening it from the terminal and seeing the messages that it outputs. And one other thing is, I am not using the file input of VLC. So, the way I am doing it is opening an asx file in vlc and when it requests for the actual mpg file, I am fetching it from a different computer instead of the main server... something like a p2p video streaming...

EDIT: One other problem is even when I try increasing my buffer size, the initial playback time does not vary (this is the 300 ms time you were specifying and by the way I observe that this is 3 seconds and not 300 ms). I am not understanding if its vlc related or I am not following some protocol that it wants me to... I tried printing how many bytes my client is reading and it keeps printing 1448 which I guess is the MSS size for the following code:

Code: Select all

SERVER Side: byte[] buffer = new byte[1024*8]; int bytesRead = 0; while ((bytesRead = in.read(buffer)) != -1) { os.write(buffer, 0, bytesRead); } CLIENT SIDE: while(vlcSocket.isConnected() && (bytesRead = is.read(fileByteArray)) > 0) { fileLength += bytesRead; System.out.println("Bytes read: " + bytesRead); //out is the vlc socket's output stream and is of the type OutputStream out.write(fileByteArray, 0, bytesRead); //writing into a local file for a later playback. bos is of the BufferedOutputStream type byte[] line = new byte[bytesRead]; System.arraycopy(fileByteArray, 0, line, 0, bytesRead); bos.write(line); } out.flush();

Legend
New Cone
New Cone
Posts: 4
Joined: 23 Jun 2009 03:18

Re: Streaming halts but local playback of same file works

Postby Legend » 23 Jun 2009 17:12

I just saw the output of vlc -vvv and this is what it shows me (Sorry for the long output... I will remove it once someone sees it):

Code: Select all

[00000452] main stream debug: received first data for our buffer [00000452] main stream debug: pre-buffering done 556943 bytes in 2s - 211 kbytes/s [00000448] main input debug: creating demux: access='http' demux='' path='samplestreaming.com:80/web/pl/stream/1002/1245679800' [00000453] main demux debug: looking for demux module: 52 candidates [00000453] main demux debug: using demux module "ps" [00000453] main demux debug: TIMER module_Need() : 1.780 ms - Total 1.780 ms / 1 intvls (Avg 1.780 ms) [00000448] main input debug: `http://samplestreaming.com:80/web/pl/stream/1002/1245679800' successfully opened [00000448] main input debug: control type=1 [00000448] main input debug: selecting program id=0 [00000456] main decoder debug: looking for decoder module: 30 candidates [00000456] main decoder debug: using decoder module "libmpeg2" [00000456] main decoder debug: TIMER module_Need() : 5.561 ms - Total 5.561 ms / 1 intvls (Avg 5.561 ms) [00000456] main decoder debug: thread started [00000404] qt4 interface debug: New Event: type 1103 [00000404] qt4 interface debug: Updating the stream status: 3 [00000404] qt4 interface debug: New Event: type 1108 [00000456] main decoder debug: thread 2951228304 (decoder) created at priority 0 (input/decoder.c:217) [00000456] libmpeg2 decoder debug: 720x480 (display 720,480), aspect 576000, sar 8:9, 29.971 fps [00000456] main decoder debug: no usable vout present, spawning one [00000462] main video output debug: window size: 720x540 [00000462] main video output debug: looking for video output module: 6 candidates [00000462] xvideo video output debug: adaptor 0, port 57, format 0x32315659 (YV12) planar [00000465] main window debug: looking for vout window module: 1 candidate [00000465] main window debug: TIMER module_Need() : 3.227 ms - Total 3.227 ms / 1 intvls (Avg 3.227 ms) [00000465] main window debug: no window provider available [00000469] main decoder debug: looking for decoder module: 30 candidates [00000469] main decoder debug: using decoder module "mpeg_audio" [00000469] main decoder debug: TIMER module_Need() : 1.719 ms - Total 1.719 ms / 1 intvls (Avg 1.719 ms) [00000469] main decoder debug: thread started [00000469] main decoder debug: thread 2925124496 (decoder) created at priority 5 (input/decoder.c:217) [00000469] mpeg_audio decoder debug: MPGA channels:2 samplerate:32000 bitrate:384 [00000469] main decoder debug: no aout present, spawning one [00000478] main audio output debug: looking for audio output module: 3 candidates [00000462] xvideo video output debug: XShm video extension v1.1 (without pixmaps, opcode: 140) [00000462] xvideo video output debug: Window manager supports NetWM [00000462] xvideo video output debug: Window manager supports _NET_WM_STATE_FULLSCREEN [00000462] xvideo video output debug: Window manager supports _NET_WM_STATE_ABOVE [00000462] xvideo video output debug: Window manager supports _NET_WM_STATE_BELOW [00000462] main video output debug: using video output module "xvideo" [00000462] main video output debug: TIMER module_Need() : 226.419 ms - Total 226.419 ms / 1 intvls (Avg 226.419 ms) [00000462] main video output debug: thread started [00000462] main video output debug: got 8 direct buffer(s) [00000462] main video output debug: picture in 720x480 (0,0,720x480), chroma I420, ar 4:3, sar 8:9 [00000462] main video output debug: picture user 720x480 (0,0,720x480), chroma I420, ar 4:3, sar 8:9 [00000462] main video output debug: picture out 720x480 (0,0,720x480), chroma I420, ar 4:3, sar 8:9 [00000462] main video output debug: direct render, mapping render pictures 0-6 to system pictures 1-7 [00000462] main video output debug: waiting for thread initialization [00000462] main video output debug: thread 2916342672 (video output) created at priority 15 (video_output/video_output.c:502) [00000404] qt4 interface debug: New Event: type 1109 [00000456] main decoder warning: decoder synchro warning: pts != current_date (-985169) [00000478] alsa audio output debug: opening ALSA device `default' [00000478] main audio output debug: thread started [00000478] main audio output debug: thread 2828282768 (aout) created at priority 15 (alsa.c:687) [00000478] main audio output debug: using audio output module "alsa" [00000478] main audio output debug: TIMER module_Need() : 259.861 ms - Total 259.861 ms / 1 intvls (Avg 259.861 ms) [00000478] main audio output debug: output 'fl32' 32000 Hz Stereo frame=1 samples/8 bytes [00000478] main audio output debug: mixer 'fl32' 32000 Hz Stereo frame=1 samples/8 bytes [00000478] main audio output debug: no need for any filter [00000478] main audio output debug: looking for audio mixer module: 3 candidates [00000478] main audio output debug: using audio mixer module "float32_mixer" [00000478] main audio output debug: TIMER module_Need() : 0.632 ms - Total 0.632 ms / 1 intvls (Avg 0.632 ms) [00000478] main audio output debug: input 'mpga' 32000 Hz Stereo frame=1152 samples/1737 bytes [00000478] main audio output debug: filter(s) 'mpga'->'fl32' 32000 Hz->32000 Hz Stereo->Stereo [00000480] main audio output debug: looking for audio filter module: 24 candidates [00000480] main audio output debug: using audio filter module "mpgatofixed32" [00000480] main audio output debug: TIMER module_Need() : 1.403 ms - Total 1.403 ms / 1 intvls (Avg 1.403 ms) [00000478] main audio output debug: found a filter for the whole conversion [00000478] main audio output debug: filter(s) 'fl32'->'fl32' 35200 Hz->32000 Hz Stereo->Stereo [00000485] main audio output debug: looking for audio filter module: 24 candidates [00000485] main audio output debug: using audio filter module "bandlimited_resampler" [00000485] main audio output debug: TIMER module_Need() : 0.988 ms - Total 0.988 ms / 1 intvls (Avg 0.988 ms) [00000478] main audio output debug: found a filter for the whole conversion [00000491] main spu text debug: looking for text renderer module: 2 candidates [00000493] main generic debug: thread started [00000493] main generic debug: thread 2818923408 (fontlist builder) created at priority 0 (freetype.c:477) [00000493] freetype generic debug: Building font database... [00000493] freetype generic debug: Finished building font database. [00000493] freetype generic debug: Took 0 seconds [00000491] freetype spu text debug: using fontsize: 30 [00000491] main spu text debug: using text renderer module "freetype" [00000491] main spu text debug: TIMER module_Need() : 40.122 ms - Total 40.122 ms / 1 intvls (Avg 40.122 ms) [00000491] freetype spu text debug: using fontsize: 30 [00000493] main generic debug: thread ended [00000490] main blend debug: looking for video blending module: 1 candidate [00000490] blend blend debug: chroma: YUVA -> I420 [00000490] main blend debug: using video blending module "blend" [00000490] main blend debug: TIMER module_Need() : 5.494 ms - Total 5.494 ms / 1 intvls (Avg 5.494 ms) [00000478] main audio output warning: output date isn't PTS date, requesting resampling (40488) [00000478] main audio output warning: buffer is 40488 late, triggering upsampling [00000478] main audio output warning: output date isn't PTS date, requesting resampling (48508) [00000478] main audio output warning: timing screwed, stopping resampling [00000478] main audio output warning: buffer is 88996 late, triggering upsampling [00000462] main video output warning: late picture skipped (-6338) [00000478] alsa audio output debug: recovered from buffer underrun [00000478] main audio output warning: computed PTS is out of range (169817), clearing out [00000478] main audio output warning: timing screwed, stopping resampling [00000478] main audio output warning: PTS is out of range (257094), dropping buffer [00000478] main audio output warning: output PTS is out of range (196133), clearing out [00000478] message audio output warning: message queue overflowed [00000478] main audio output warning: PTS is out of range (221179), dropping buffer [00000478] main audio output warning: PTS is out of range (185251), dropping buffer [00000478] main audio output warning: PTS is out of range (149301), dropping buffer [00000478] main audio output warning: PTS is out of range (113388), dropping buffer [00000478] main audio output warning: PTS is out of range (77439), dropping buffer [00000478] main audio output warning: PTS is out of range (41488), dropping buffer [00000478] main audio output warning: PTS is out of range (5537), dropping buffer [00000478] main audio output warning: PTS is out of range (-30415), dropping buffer [00000478] main audio output debug: audio output is starving (56061), playing silence [00000462] main video output warning: late picture skipped (10516) [00000478] alsa audio output debug: recovered from buffer underrun [00000478] main audio output warning: computed PTS is out of range (752082), clearing out [00000478] main audio output warning: PTS is out of range (752412), dropping buffer [00000478] main audio output warning: output PTS is out of range (764447), clearing out [00000478] main audio output warning: PTS is out of range (723621), dropping buffer [00000478] main audio output warning: PTS is out of range (687783), dropping buffer [00000478] main audio output warning: PTS is out of range (651840), dropping buffer [00000478] main audio output warning: PTS is out of range (615889), dropping buffer [00000478] main audio output warning: PTS is out of range (579937), dropping buffer [00000478] main audio output warning: PTS is out of range (545780), dropping buffer [00000478] main audio output warning: PTS is out of range (509860), dropping buffer [00000478] main audio output warning: PTS is out of range (473911), dropping buffer [00000478] main audio output warning: PTS is out of range (437957), dropping buffer [00000478] main audio output warning: PTS is out of range (410104), dropping buffer [00000478] main audio output warning: PTS is out of range (374199), dropping buffer [00000478] main audio output warning: PTS is out of range (338252), dropping buffer [00000478] main audio output warning: PTS is out of range (303975), dropping buffer [00000478] main audio output warning: PTS is out of range (268052), dropping buffer [00000478] main audio output warning: PTS is out of range (233697), dropping buffer [00000478] main audio output warning: PTS is out of range (197780), dropping buffer [00000478] main audio output warning: PTS is out of range (162528), dropping buffer [00000478] main audio output warning: PTS is out of range (127258), dropping buffer [00000478] main audio output warning: PTS is out of range (91860), dropping buffer [00000478] main audio output warning: PTS is out of range (56488), dropping buffer [00000478] main audio output warning: PTS is out of range (29220), dropping buffer [00000478] main audio output warning: PTS is out of range (-6144), dropping buffer [00000456] main decoder debug: decoded 89/105 pictures [00000462] main video output warning: late picture skipped (428762) [00000462] main video output warning: late picture skipped (362096) [00000478] alsa audio output debug: recovered from buffer underrun [00000462] main video output warning: late picture skipped (1941) [00000478] main audio output warning: computed PTS is out of range (1073503), clearing out [00000478] main audio output warning: PTS is out of range (1073581), dropping buffer [00000478] main audio output warning: output PTS is out of range (1077616), clearing out [00000478] main audio output warning: PTS is out of range (1037670), dropping buffer [00000462] main video output warning: late picture skipped (789571) [00000478] main audio output warning: PTS is out of range (1021702), dropping buffer [00000478] main audio output warning: PTS is out of range (985785), dropping buffer [00000478] main audio output warning: PTS is out of range (951461), dropping buffer [00000478] main audio output warning: PTS is out of range (915562), dropping buffer [00000478] main audio output warning: PTS is out of range (879615), dropping buffer [00000478] main audio output warning: PTS is out of range (843664), dropping buffer [00000478] main audio output warning: PTS is out of range (809512), dropping buffer [00000478] main audio output warning: PTS is out of range (773589), dropping buffer [00000478] main audio output warning: PTS is out of range (751125), dropping buffer [00000478] main audio output warning: PTS is out of range (715219), dropping buffer [00000478] main audio output warning: PTS is out of range (679772), dropping buffer [00000478] main audio output warning: PTS is out of range (643830), dropping buffer [00000478] main audio output warning: PTS is out of range (608685), dropping buffer [00000478] main audio output warning: PTS is out of range (573603), dropping buffer [00000478] main audio output warning: PTS is out of range (538274), dropping buffer [00000478] main audio output warning: PTS is out of range (502598), dropping buffer [00000478] main audio output warning: PTS is out of range (467589), dropping buffer [00000478] main audio output warning: PTS is out of range (432137), dropping buffer [00000478] main audio output warning: PTS is out of range (396190), dropping buffer [00000462] main video output warning: late picture skipped (771554) [00000462] main video output warning: late picture skipped (671541) [00000478] main audio output warning: PTS is out of range (1505486), dropping buffer [00000478] main audio output warning: PTS is out of range (1469586), dropping buffer [00000478] main audio output warning: PTS is out of range (1433638), dropping buffer [00000478] main audio output warning: PTS is out of range (1399356), dropping buffer [00000478] main audio output warning: PTS is out of range (1363427), dropping buffer [00000478] main audio output warning: PTS is out of range (1329593), dropping buffer [00000478] main audio output warning: PTS is out of range (1293661), dropping buffer [00000478] main audio output warning: PTS is out of range (1257712), dropping buffer [00000478] main audio output warning: PTS is out of range (1223965), dropping buffer [00000478] main audio output warning: PTS is out of range (1188041), dropping buffer [00000462] main video output warning: late picture skipped (1277983) [00000478] main audio output warning: PTS is out of range (1174760), dropping buffer [00000478] main audio output warning: PTS is out of range (1152463), dropping buffer [00000478] main audio output warning: PTS is out of range (1116701), dropping buffer [00000478] main audio output warning: PTS is out of range (1080723), dropping buffer [00000478] main audio output warning: PTS is out of range (1044977), dropping buffer [00000478] main audio output warning: PTS is out of range (1009758), dropping buffer [00000478] main audio output warning: PTS is out of range (973940), dropping buffer [00000478] main audio output warning: PTS is out of range (938733), dropping buffer [00000478] main audio output warning: PTS is out of range (902875), dropping buffer [00000478] main audio output warning: PTS is out of range (867154), dropping buffer [00000478] main audio output warning: PTS is out of range (831175), dropping buffer [00000462] main video output warning: late picture skipped (817809) [00000478] main audio output warning: PTS is out of range (2254064), dropping buffer [00000478] main audio output warning: PTS is out of range (2218165), dropping buffer [00000478] main audio output warning: PTS is out of range (2182217), dropping buffer [00000478] main audio output warning: PTS is out of range (2164912), dropping buffer [00000478] main audio output warning: PTS is out of range (2129014), dropping buffer [00000478] main audio output warning: PTS is out of range (2123053), dropping buffer [00000478] main audio output warning: PTS is out of range (2087149), dropping buffer [00000478] main audio output warning: PTS is out of range (2051228), dropping buffer [00000478] main audio output warning: PTS is out of range (2017465), dropping buffer [00000478] main audio output warning: PTS is out of range (1981535), dropping buffer [00000478] main audio output warning: PTS is out of range (1947499), dropping buffer [00000478] main audio output warning: PTS is out of range (1911565), dropping buffer [00000478] main audio output warning: PTS is out of range (1877578), dropping buffer [00000478] main audio output warning: PTS is out of range (1841640), dropping buffer [00000478] main audio output warning: PTS is out of range (1805688), dropping buffer [00000462] main video output warning: late picture skipped (1819294) [00000478] main audio output warning: PTS is out of range (1781265), dropping buffer [00000478] main audio output warning: PTS is out of range (1745802), dropping buffer [00000478] main audio output warning: PTS is out of range (1710500), dropping buffer [00000462] main video output warning: late picture skipped (1359101) [00000478] main audio output warning: PTS is out of range (2931737), dropping buffer [00000478] main audio output warning: PTS is out of range (2895859), dropping buffer [00000478] main audio output warning: PTS is out of range (2859910), dropping buffer [00000478] main audio output warning: PTS is out of range (2823977), dropping buffer [00000478] main audio output warning: PTS is out of range (2788028), dropping buffer [00000478] main audio output warning: PTS is out of range (2752077), dropping buffer [00000478] main audio output warning: PTS is out of range (2730841), dropping buffer [00000478] main audio output warning: PTS is out of range (2694941), dropping buffer [00000478] main audio output warning: PTS is out of range (2658993), dropping buffer [00000478] main audio output warning: PTS is out of range (2623041), dropping buffer [00000478] main audio output warning: PTS is out of range (2587089), dropping buffer [00000478] main audio output warning: PTS is out of range (2553326), dropping buffer [00000478] main audio output warning: PTS is out of range (2517415), dropping buffer [00000478] main audio output warning: PTS is out of range (2481466), dropping buffer [00000478] main audio output warning: PTS is out of range (2445514), dropping buffer [00000478] main audio output warning: PTS is out of range (2409562), dropping buffer [00000478] main audio output warning: PTS is out of range (2373609), dropping buffer [00000462] main video output warning: late picture skipped (2110315) [00000478] main audio output warning: PTS is out of range (2345650), dropping buffer [00000478] main audio output warning: PTS is out of range (2309732), dropping buffer [00000478] main audio output warning: PTS is out of range (2273784), dropping buffer [00000478] main audio output warning: PTS is out of range (2237832), dropping buffer [00000478] main audio output warning: PTS is out of range (2201880), dropping buffer [00000478] main audio output warning: PTS is out of range (2167966), dropping buffer [00000478] main audio output warning: PTS is out of range (2132040), dropping buffer [00000478] main audio output warning: PTS is out of range (2096090), dropping buffer [00000456] main decoder debug: decoded 14/105 pictures [00000478] main audio output warning: PTS is out of range (2097515), dropping buffer [00000478] main audio output warning: PTS is out of range (2061607), dropping buffer [00000478] main audio output warning: PTS is out of range (2025657), dropping buffer [00000478] main audio output warning: PTS is out of range (1991261), dropping buffer [00000478] main audio output warning: PTS is out of range (1955390), dropping buffer [00000478] main audio output warning: PTS is out of range (1919438), dropping buffer [00000478] main audio output warning: PTS is out of range (1883485), dropping buffer [00000478] main audio output warning: PTS is out of range (1853616), dropping buffer [00000478] main audio output warning: PTS is out of range (1818013), dropping buffer [00000478] main audio output warning: PTS is out of range (1782572), dropping buffer [00000462] main video output warning: late picture skipped (1690393) [00000478] main audio output warning: PTS is out of range (2903425), dropping buffer [00000478] main audio output warning: PTS is out of range (2867542), dropping buffer [00000478] main audio output warning: PTS is out of range (2831594), dropping buffer [00000478] main audio output warning: PTS is out of range (2795645), dropping buffer [00000478] main audio output warning: PTS is out of range (2759695), dropping buffer [00000478] main audio output warning: PTS is out of range (2723744), dropping buffer [00000478] main audio output warning: PTS is out of range (2687794), dropping buffer [00000478] main audio output warning: PTS is out of range (2651842), dropping buffer [00000478] main audio output warning: PTS is out of range (2615891), dropping buffer [00000478] main audio output warning: PTS is out of range (2579938), dropping buffer [00000478] main audio output warning: PTS is out of range (2543987), dropping buffer [00000478] main audio output warning: PTS is out of range (2508036), dropping buffer [00000478] main audio output warning: PTS is out of range (2472084), dropping buffer [00000478] main audio output warning: PTS is out of range (2436132), dropping buffer [00000478] main audio output warning: PTS is out of range (2400181), dropping buffer [00000478] main audio output warning: PTS is out of range (2364229), dropping buffer [00000478] main audio output warning: PTS is out of range (2328276), dropping buffer [00000478] main audio output warning: PTS is out of range (2296044), dropping buffer [00000478] main audio output warning: PTS is out of range (2260728), dropping buffer [00000478] main audio output warning: PTS is out of range (2225205), dropping buffer [00000478] main audio output warning: PTS is out of range (2189656), dropping buffer [00000478] main audio output warning: PTS is out of range (2154476), dropping buffer [00000478] main audio output warning: PTS is out of range (2119642), dropping buffer [00000478] main audio output warning: PTS is out of range (2083705), dropping buffer [00000478] main audio output warning: PTS is out of range (2048409), dropping buffer [00000462] main video output warning: late picture skipped (2361529) [00000462] main video output warning: late picture skipped (1921549) [00000478] main audio output warning: PTS is out of range (3258092), dropping buffer [00000478] main audio output warning: PTS is out of range (3222202), dropping buffer [00000478] main audio output warning: PTS is out of range (3186257), dropping buffer [00000478] main audio output warning: PTS is out of range (3150307), dropping buffer [00000478] main audio output warning: PTS is out of range (3114356), dropping buffer [00000478] main audio output warning: PTS is out of range (3078404), dropping buffer [00000478] main audio output warning: PTS is out of range (3042452), dropping buffer [00000478] main audio output warning: PTS is out of range (3006501), dropping buffer [00000478] main audio output warning: PTS is out of range (2970549), dropping buffer [00000478] main audio output warning: PTS is out of range (2934598), dropping buffer [00000478] main audio output warning: PTS is out of range (2898648), dropping buffer

funtra
New Cone
New Cone
Posts: 5
Joined: 27 Jun 2009 18:21

Re: Streaming halts but local playback of same file works

Postby funtra » 27 Jun 2009 18:31

This problem can be created by copying file a to file b on the same machine and trying to play file b in vlc on the same machine. Are you doing something similar by transfering from another machine and writing to an asf file which is being read by VLC. Or are you actually creating a tcp socket for vlc to listen to and transfering data to that socket.


Return to “General VLC media player Troubleshooting”

Who is online

Users browsing this forum: No registered users and 92 guests