VideoHelp Forum




+ Reply to Thread
Results 1 to 3 of 3
  1. Hello.

    I'm trying to download a few streams from MTV.de, but my old set of commands doesn't seem to work anymore. I have ffmpeg and youtube-dl (I'm using OS X).

    I found the m3u8 file, but the http that I can download the manifest from does not end with m3u8. Here is the link for the best quality:

    https://dlvrsvc.mtvnservices.com/api/playlist/gsp.mtviestor/MVI_PROD/umg_int/demp81900...com&cdn=akamai

    These are the links for the first two segments - I can download them separately as ts files, but I want to download all at once and merge them automatically, if possible.

    https://vimn-l3.ts.mtvnservices.com/gsp.scenic/international/mtv-intl/series/EMA-2017/..._1361076919.ts
    https://vimn-l3.ts.mtvnservices.com/gsp.scenic/international/mtv-intl/series/EMA-2017/..._1361076919.ts

    This is the link to the video I'm trying to download:

    http://www.mtv.de/musik/videoclips/sadlxj/max-raabe-guten-tag-liebes-glueck-feat-lea-mtv-unplugged

    Any ideas? Thanks in advance!
    Quote Quote  
  2. Average video editor Sviests's Avatar
    Join Date
    Sep 2018
    Location
    USA,Sweden
    Search Comp PM
    Youtube-dl works:

    Code:
    youtube-dl -F "http://www.mtv.de/musik/videoclips/sadlxj/max-raabe-guten-tag-liebes-glueck-feat-lea-mtv-unplugged"
    [mtv.de] max-raabe-guten-tag-liebes-glueck-feat-lea-mtv-unplugged: Downloading webpage
    [mtv.de] Downloading JSON metadata
    [mtv.de] dc244a60-29c5-48af-a11f-9ffb63b48c9c: Downloading info
    [mtv.de] dc244a60-29c5-48af-a11f-9ffb63b48c9c: Extracting information
    [mtv.de] dc244a60-29c5-48af-a11f-9ffb63b48c9c: Downloading video urls
    [mtv.de] dc244a60-29c5-48af-a11f-9ffb63b48c9c: Downloading m3u8 information
    [download] Downloading playlist: Guten Tag, liebes Glück
    [mtv.de] playlist Guten Tag, liebes Glück: Collected 1 video ids (downloading 1 of them)
    [download] Downloading video 1 of 1
    [info] Available formats for dc244a60-29c5-48af-a11f-9ffb63b48c9c:
    format code  extension  resolution note
    hls-589      mp4        384x216     589k , avc1.64002A, 25.0fps, mp4a.40.2
    hls-957      mp4        512x288     957k , avc1.64002A, 25.0fps, mp4a.40.2
    hls-1405     mp4        640x360    1405k , avc1.64002A, 25.0fps, mp4a.40.2
    hls-1914     mp4        768x432    1914k , avc1.64002A, 25.0fps, mp4a.40.2
    hls-2526     mp4        960x540    2526k , avc1.64002A, 25.0fps, mp4a.40.2
    hls-3443     mp4        1280x720   3443k , avc1.64002A, 25.0fps, mp4a.40.2
    hls-6502     mp4        1920x1080  6502k , avc1.64002A, 25.0fps, mp4a.40.2 (best)
    [download] Finished downloading playlist: Guten Tag, liebes Glück
    It auto downloads best quality (1080p in this case) if you just paste:
    Code:
    youtube-dl "http://www.mtv.de/musik/videoclips/sadlxj/max-raabe-guten-tag-liebes-glueck-feat-lea-mtv-unplugged"
    Also any plugin for web browser (firefox or chrome) can pick up .m3u8 streams, you can just then paste that in FFMPEG as well,
    For this clip,that'll be:
    https://dlvrsvc.mtvnservices.com/api/playlist/gsp.scenic/international/mtv-intl/series...com&cdn=level3
    Quote Quote  
  3. Thank you very much! Unfortunately, I cannot download it that way (and I only have a Mac atm).

    I get the same "no image" error from ffmpeg while using -i with the manifest link.

    Perhaps it's a problem with my version of ffmpeg? It would certainly look this way... (alt. path or something of this sort, maybe?)

    youtube-dl

    Siggi:~ frog$ youtube-dl "http://www.mtv.de/musik/videoclips/sadlxj/max-raabe-guten-tag-liebes-glueck-feat-lea-mtv-unplugged"
    [mtv.de] max-raabe-guten-tag-liebes-glueck-feat-lea-mtv-unplugged: Downloading webpage
    [mtv.de] Downloading JSON metadata
    [mtv.de] dc244a60-29c5-48af-a11f-9ffb63b48c9c: Downloading info
    [mtv.de] dc244a60-29c5-48af-a11f-9ffb63b48c9c: Extracting information
    [mtv.de] dc244a60-29c5-48af-a11f-9ffb63b48c9c: Downloading video urls
    [mtv.de] dc244a60-29c5-48af-a11f-9ffb63b48c9c: Downloading m3u8 information
    [download] Downloading playlist: Guten Tag, liebes Glück
    [mtv.de] playlist Guten Tag, liebes Glück: Collected 1 video ids (downloading 1 of them)
    [download] Downloading video 1 of 1
    [hlsnative] Downloading m3u8 manifest
    WARNING: hlsnative has detected features it does not support, extraction will be delegated to ffmpeg
    [download] Destination: Guten Tag, liebes Glück-dc244a60-29c5-48af-a11f-9ffb63b48c9c.mp4
    dyld: Library not loaded: /usr/local/opt/openssl/lib/libssl.1.0.0.dylib
    Referenced from: /usr/local/bin/ffmpeg
    Reason: image not found

    ERROR: ffmpeg exited with code -6
    ffmpeg

    dyld: Library not loaded: /usr/local/opt/openssl/lib/libssl.1.0.0.dylib
    Referenced from: /usr/local/bin/ffmpeg
    Reason: image not found

    EDIT: I think I got it now It is a problem with my OS version and dependencies (OpenSSL seems to be the issue).

    I managed to get it to work in youtube-dl, but Apple messed stuff up and now other things may malfunction :/ Thank you again!

    And if any Mac user has issues - try uninstalling OpenSSL (ignoring all dependencies) and reinstalling it. You might have more hurdles to overcome, so keep that in mind and take note which apps used those libraries. Good luck!
    Last edited by sebillia; 3rd Jun 2020 at 09:50.
    Quote Quote  



Similar Threads

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