View Single Post
  #5  
Old 07-23-2013, 03:03 AM
mehphishtopheles mehphishtopheles is offline
Junior Member
 
Join Date: Jul 2013
Posts: 9
mehphishtopheles is on a distinguished road
Default

Re: "Ghost time" issue with live webcast generated rtmp dumps


Quote:
Originally Posted by blimey View Post
oftens just stripping container created during livestream, and then laying down video-audio streams to fresh made container fix these timestamp type things issue.

at least i say it have works for me somes of the times, may be you could trys doing it for your case to say the outcome?

by examples, use ffmpeg. this example is ms-dos command line, but yous could do linux command line if that is how you run ffmpeg.

Code:
ffmpeg -i "input.flv" -vcodec copy -acodec copy "output.flv"
where input.flv is you mess up livestream file, and output.flv is the re-fixed file.
thank you as well, blimey. what I did was:

1. use yaflvfix
2. used your command above to demux/remux
3. used ffmpeg again to trim first second of file.

following these 3 steps fixed the vast majority of my problems.
Reply With Quote