I don't know why Hasomaso has deleted his posts, does not matter.
The issue I had is well known:
http://stream-recorder.com/forum/rtm...ng-t11148.html
but with -live option my video freezes:
http://stream-recorder.com/forum/pic...za-t16265.html
Unfortunately after adding -R the result is the same. Probably due to my slow connection.
So the problem is the RTMP_LF_BUFX hack. To solve this issue I downloaded rtmpdump version 2.1 that comes without hack.
Now I can download video with a low timeout:
http://stream-recorder.com/forum/rtm...aks-t7112.html
Code:
/rtmpdump-2.1 $ ./rtmpdump -m 15 -r "rtmp://wos.cr1.streamzilla.xlcdn.com/vod/_definst_/" -y "sz/deltapictures/cinema/FHelvira/FHelvira_800.mp4?token=33e92076930911f657e81cc55e7c95d1&time=531666eb" -o helvira.mp4
In this way, however, the video "jumps backwards" every now and then:
http://lists.mplayerhq.hu/pipermail/...il/001936.html
http://lists.mplayerhq.hu/pipermail/...ay/001947.html
So the last step I had to do was to fix the video.
In my case I used avconv:
Code:
/rtmpdump-2.1 $ avconv -i helvira.mp4 -qscale 1 -copyts -async 1 -r 25 helvira_fix.mp4
That's all.