I'm trying to play a MP4 files over HTTP, but it doesn't work, displaying the "Resource temporarily unavailable" message in logs.
The files can be played with VLC from another computer over HTTP without any problem (the computer is in a different place, and has a different Internet connection).
Here is a part of the log with the error:
Code: Select all
avformat debug: detected format: mov,mp4,m4a,3gp,3g2,mj2
access_http debug: trying to seek to 17577942
main debug: net: connecting to xx.xxx.xx.xxx port 80
main debug: connection: Resource temporarily unavailable
main debug: connection succeeded (socket = 5804)
access_http debug: protocol 'HTTP' answer code 206
access_http debug: Content-Type: application/octet-stream
access_http debug: this frame size=17666659
access_http debug: stream size=35244601,pos=17577942,remaining=17666659
access_http debug: trying to seek to 35155920
main debug: net: connecting to xx.xxx.xx.xxx port 80
main debug: connection: Resource temporarily unavailable
main debug: connection succeeded (socket = 5576)
access_http debug: protocol 'HTTP' answer code 206
access_http debug: Content-Type: application/octet-stream
access_http debug: this frame size=17666659
access_http debug: stream size=52822579,pos=35155920,remaining=17666659
access_http debug: trying to seek to 35244637
main debug: net: connecting to xx.xxx.xx.xxx port 80
main debug: connection: Resource temporarily unavailable
main debug: connection succeeded (socket = 5524)
access_http debug: protocol 'HTTP' answer code 206
access_http debug: Content-Type: application/octet-stream
access_http debug: this frame size=17666659
access_http debug: stream size=52911296,pos=35244637,remaining=17666659
avformat error: av_open_input_stream failed
Any idea why it's happening, and what can be done to solve it?
Thanks in advance!