VideoHelp Forum
+ Reply to Thread
Results 1 to 14 of 14
Thread
  1. Using VideoDownloadHelper I notice that all the streams from a particular site have an issue with the video subtly stuttering/jerking. If I re-encode the video through handbrake the issue is gone. It's not visible in the live video, just the downloaded file.

    Is this a common problem and any insight into what is actually causing this?
    Quote Quote  
  2. Anyone with this issue? My videos also lagging after downloading with downloadhelper.
    Quote Quote  
  3. You don't say which format you download these videos in. Presumably its .ts if its a hls stream (?).
    By their nature, ts files are designed to be thrown at you piecemeal off a webserver so even though they can actually be replayed in your favourite media player they aren't designed to do this.

    And you have more or less answered your own question. By re encoding the ts in Handbrake - presumably to mkv or mp4 - you will remove the dead spots and empty voids that a raw captured ts file contains.

    However, unless you are trying to reduce filesize for some reason, a complete re encode is unnecessary. Simply drag and drop the ts file into MkvtoolNix and click 'Multiplex' and this will 'demux" the raw ts into an mkv in seconds without the need for any long winded re encoding. And will play back smoothly in your media player.

    References:
    VLC Media Player
    https://www.videolan.org/vlc/index.en-GB.html

    Mkvtoolnix
    https://mkvtoolnix.download/downloads.html

    If you are happier with the CLI this can be achieved many ways too. Ffmpeg is excellent for this.

    Code:
    ffmpeg -i input.ts -c copy output.mkv
    Quote Quote  
  4. Do you know something that would work for MPEG-4p10/AVC/H.264 files downloaded via hls? I cannot find a solution apart from re-encoding for the stuttering and frame drop issue when using videodownloadhelper to HLS download these files. I was hoping mkvtoolnix was my golden ticket but I didn't get it to work (I was also hoping my files were .ts!). Any suggestions apart from re-encoding these? Thanks in advance!
    Quote Quote  
  5. There is no golden ticket for dropped frames/stuttering due to buffering and stream lag issues etc.

    And you don't say whether you are downloading Live streams or static VODs. If you are getting stream-lag and stuttering whilst downloading VODs then you need to be looking at other factors such as saving the ts to a separate drive other than your System drive, ISP issues, router issues etc. You should be able to get a clean, uninterrupted download of any fixed (static) VOD in ts format and successfully demux to Mkv in mkvtoolnix or Mkv/Mp4 with ffmpeg. (Or to Mp4 in Mp4box GUI.)

    No app in the world will 'cure' a Live captured video (in any format) of dropped and problematic frames. The capture (normally ts for hls) - whether OBS or VLC 'recorded' or downloaded via Streamlink, Yt-dl or ffmpeg etc has to be consistent for mkvtoolnix, or similar apps to work with.

    You could try something like VideoReDo suite - not free - and review the timeline of the video frame by frame and remove dead/problematic frames (in the same way you would remove commercial breaks) but its long winded. Once saved, this would, of course, allow for a smoother playback but would have dropped frames.

    * What app are you using to download your MPEG-4p10/AVC/H.264 files ? Maybe there is a setting to change that will download the file in ts format ?
    Last edited by codehound; 14th May 2020 at 05:42.
    Quote Quote  
  6. Thanks for the reply! They are VODs but they won't demux in mkvtoolnix. If I re-encode them they play great, but for hundreds of hours, that is not feasible unless I get an encoding machine. I didn't know about the potential drive/isp/router issues and am not sure how to investigate further if that is my issue - I've tried on a few different machines and have the same pattern of dropped frames.

    I'm using videodownloadhelper (paid) but don't see any settings to just keep the ts.

    I'm trying to download videos from the digitalconcerthall. There is a free playlist here https://www.digitalconcerthall.com/en/playlist/10 (I'd recommend the last video in the list, "Interview - Dawn of a new Era...." as it's the shortest) if you are up for trying it out. It asks for registration but you can just put in random stuff and immediately access the playlist. It's been my white whale for a few years now and I jump at the chance someone much more knowledgeable than me taking a look.
    Quote Quote  
  7. Its easily downloadable with a Streamlink basic command. I don't know if your able to use the CLI and this app ? And the files ARE ts files : ) Notice the segments in the Network traffic ?

    Image
    [Attachment 53309 - Click to enlarge]


    I did a Filter URL for mpd but straightaway a 'master.m3u8' popped up telling us that the best quality available is 1080p. So with a simple Streamlink syntax I was able to download the 10 min Raw ts in 26 seconds.

    Here's the raw ts
    http://www.mediafire.com/file/ba6cxfcwfj0r4ui

    Here's the demuxed Mkv (after mkvtoolnix'ing)
    http://www.mediafire.com/file/phumdpxobvuzpw8

    Note the difference in filesize now the empty voids are removed.

    Here's the streamlink syntax to download the raw ts:

    streamlink "https://world-vod.dchdns.net/hlss/dch/52428-5/,h264_LOW_THREE,h264_LOW_TWO,h264_LOW_ONE,h264_MED IUM_TWO,h264_MEDIUM_ONE,h264_HIGH,h264_VERY_HIGH_O NE,.mp4.urlset/master.m3u8" best -o anyname.ts
    Image
    [Attachment 53310 - Click to enlarge]


    Addendum:

    If you want an Mp4 here it is via CLI with ffmpeg and the command, in 5 seconds:

    ffmpeg -i dch.ts -c copy dch.mp4
    http://www.mediafire.com/file/tr5u85vukm50i9z

    Similarly for Mkv with ffmpeg (instead of MkvToolNix)

    ffmpeg -i dch.ts -c copy dch.mkv
    Refs:

    Ffmpeg for Windows
    https://ffmpeg.zeranoe.com/builds/

    Streamlink
    https://streamlink.github.io/cli.html

    VLC Media Player
    https://www.videolan.org/vlc/download-windows.html

    MKVToolNix
    https://www.fosshub.com/MKVToolNix.html
    Last edited by codehound; 14th May 2020 at 14:14.
    Quote Quote  
  8. Fantastic, thank you! I will look into this and let you know if I can't figure it out. Thank you so much!!
    Quote Quote  
  9. Originally Posted by historybandgeek View Post
    Fantastic, thank you! I will look into this and let you know if I can't figure it out. Thank you so much!!
    There are loads of Streamlink tutorials all over here and the net (youtube) too. If you cant figure it out post back and I'll post more basic/detailed instructions my friend.

    To grab the master m3u8 with Edge browser:

    Click F12 key on keyboard for the DevTools

    Make sure VOD is playing

    Click the Network tab at top of DevTools box (and also the little green arrow if no traffic is showing)

    Locate and Left click on the entry at 1

    RIGHT click on the entry at 2 and select 'copy value'

    Image
    [Attachment 53313 - Click to enlarge]
    Last edited by codehound; 14th May 2020 at 13:33.
    Quote Quote  
  10. I did it! At first my directory was set to system32 and I couldn't find the output. But when opening cmd within another folder, it worked beautifully. (and I can set the output wherever I want - doh!) My next challenge is figuring out how to automate the link finding and downloading for those many videos. I don't need a solution right now, but if you would recommend a direction to look, I'd really appreciate it!
    Quote Quote  
  11. Add streamlink.exe, ffmpeg.exe and youtube-dl.exe to your Windows path environment table, then you can 'call' them from anywhere.
    https://helpdeskgeek.com/windows-10/add-windows-path-environment-variable/

    I don't know about automating an m3u8 finder for an entire website ?! Way beyond my scope, my friend. Unless someone else on here knows different - looks like you have a lot of manual work to do ; )

    Another easy-to-use CLI app called youtube-dl can download entire playlists, so if there are playlists on that site....?

    https://github.com/ytdl-org/youtube-dl
    Last edited by codehound; 14th May 2020 at 14:20.
    Quote Quote  
  12. Member
    Join Date
    Mar 2021
    Location
    Jakarta
    Search Comp PM
    Hello, I am new to this. Recently I'm tried to download the video from here https://www.melon.com/video/detail2.htm?mvId=50234357.
    After browsing on the internet, I've installed Video Download Helper and companion app. The download succeeds.
    The downloaded video format is mp4. And like the op, my video is a bit choppy/stuttered when played.
    I have tried Handbrake and yes the problem solved. But I want to know if there is any other solution.
    Quote Quote  
  13. I was able to follow these instructions pasted above and download the fun video! Look for "video.m3u8" in the F12 network tab and copy that link into streamlink with the correct arguments.
    Good luck! And post again if you are having trouble!



    Originally Posted by codehound View Post
    Originally Posted by historybandgeek View Post
    Fantastic, thank you! I will look into this and let you know if I can't figure it out. Thank you so much!!
    There are loads of Streamlink tutorials all over here and the net (youtube) too. If you cant figure it out post back and I'll post more basic/detailed instructions my friend.

    To grab the master m3u8 with Edge browser:

    Click F12 key on keyboard for the DevTools

    Make sure VOD is playing

    Click the Network tab at top of DevTools box (and also the little green arrow if no traffic is showing)

    Locate and Left click on the entry at 1

    RIGHT click on the entry at 2 and select 'copy value'

    Image
    [Attachment 53313 - Click to enlarge]
    Quote Quote  
  14. I know this is an old thread, but it was one of the top google results and wanted to share my fix in case it helps someone else.

    I found a fix - video downloadhelper downloads the stream as an .mp4 file, I found remuxing the file in VLC back to a .ts file fixed all the stuttering issues my video had - no transcoding needed! Hope that helps!
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!