VideoHelp Forum
+ Reply to Thread
Page 1 of 2
1 2 LastLast
Results 1 to 30 of 60
Thread
  1. I'm trying to download the video on this page.
    http://film.onet.pl/pensjonat-nad-rozlewiskiem-relacja-z-planu-serialu/y428n0

    I got the url with .mpd
    Code:
    http://ecache3.m10r2.cdn.onet.pl/ceph/ac41b2e7-f84b-45dc-8101-83345c197bd0.1498143227.339679.ism/.mpd?co=go&ct=sm&st=9UkomYMGLwbom5ODZeQyFg&e=1498280827
    then copied and pasted it in the browser, I got the mpd file.

    Opened it with notepad.
    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <!-- Created with Unified Streaming Platform(version=1.7.10) -->
    <MPD
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns="urn:mpeg:dash:schema:mpd:2011"
      xsi:schemaLocation="urn:mpeg:dash:schema:mpd:2011 http://standards.iso.org/ittf/PubliclyAvailableStandards/MPEG-DASH_schema_files/DASH-MPD.xsd"
      type="static"
      mediaPresentationDuration="PT2M57.168300S"
      maxSegmentDuration="PT3S"
      minBufferTime="PT10S"
      profiles="urn:mpeg:dash:profile:isoff-live:2011">
      <Period>
        <BaseURL>dash/</BaseURL>
        <AdaptationSet
          group="1"
          contentType="audio"
          lang="en"
          minBandwidth="128000"
          maxBandwidth="151000"
          segmentAlignment="true"
          audioSamplingRate="44100"
          mimeType="audio/mp4"
          codecs="mp4a.40.2">
          <AudioChannelConfiguration
            schemeIdUri="urn:mpeg:dash:23003:3:audio_channel_configuration:2011"
            value="2">
          </AudioChannelConfiguration>
          <SegmentTemplate
            timescale="44100"
            initialization="ac41b2e7-f84b-45dc-8101-83345c197bd0.1498143227.339679-$RepresentationID$.dash"
            media="ac41b2e7-f84b-45dc-8101-83345c197bd0.1498143227.339679-$RepresentationID$-$Time$.dash"
            startNumber="1">
            <SegmentTimeline>
              <S t="0" d="89089" />
              <S d="88064" r="4" />
              <S d="89088" />
              <S d="88064" r="6" />
              <S d="89088" />
              <S d="88064" r="5" />
              <S d="89088" />
              <S d="88064" r="6" />
              <S d="89088" />
              <S d="88064" r="6" />
              <S d="89088" />
              <S d="88064" r="5" />
              <S d="89088" />
              <S d="88064" r="6" />
              <S d="89088" />
              <S d="88064" r="5" />
              <S d="89088" />
              <S d="88064" r="6" />
              <S d="89088" />
              <S d="88064" r="5" />
              <S d="89088" />
              <S d="88064" r="6" />
              <S d="89088" />
              <S d="88064" r="4" />
              <S d="51201" />
            </SegmentTimeline>
          </SegmentTemplate>
          <Representation
            id="audio_eng=128000"
            bandwidth="128000">
          </Representation>
          <Representation
            id="audio_eng=151000"
            bandwidth="151000">
          </Representation>
        </AdaptationSet>
        <AdaptationSet
          group="2"
          contentType="video"
          lang="en"
          par="71:40"
          minBandwidth="205000"
          maxBandwidth="5237000"
          minWidth="426"
          maxWidth="1920"
          minHeight="240"
          maxHeight="1080"
          segmentAlignment="true"
          mimeType="video/mp4"
          startWithSAP="1">
          <SegmentTemplate
            timescale="1000"
            initialization="ac41b2e7-f84b-45dc-8101-83345c197bd0.1498143227.339679-$RepresentationID$.dash"
            media="ac41b2e7-f84b-45dc-8101-83345c197bd0.1498143227.339679-$RepresentationID$-$Time$.dash"
            startNumber="1">
            <SegmentTimeline>
              <S t="0" d="2000" r="87" />
              <S d="1120" />
            </SegmentTimeline>
          </SegmentTemplate>
          <Representation
            id="video_eng=205000"
            bandwidth="205000"
            width="426"
            height="240"
            codecs="avc1.42C015"
            scanType="progressive">
          </Representation>
          <Representation
            id="video_eng=462000"
            bandwidth="462000"
            width="640"
            height="360"
            codecs="avc1.42C01E"
            scanType="progressive">
          </Representation>
          <Representation
            id="video_eng=923000"
            bandwidth="923000"
            width="854"
            height="480"
            codecs="avc1.42C01E"
            scanType="progressive">
          </Representation>
          <Representation
            id="video_eng=1846000"
            bandwidth="1846000"
            width="1024"
            height="576"
            codecs="avc1.4D401F"
            scanType="progressive">
          </Representation>
          <Representation
            id="video_eng=2562000"
            bandwidth="2562000"
            width="1280"
            height="720"
            codecs="avc1.64001F"
            scanType="progressive">
          </Representation>
          <Representation
            id="video_eng=5237000"
            bandwidth="5237000"
            width="1920"
            height="1080"
            codecs="avc1.640028"
            scanType="progressive">
          </Representation>
        </AdaptationSet>
      </Period>
    </MPD>
    I'd like to get the 1080p video file.

    Anyone know how to download from this?
    Quote Quote  
  2. Member Emeritus
    Join Date
    May 2014
    Search PM
    youtube-dl supports onet.pl and dash directly.

    Other alternatives are ismdownloaderAVC1, livestreamer, and streamlink.

    Code:
    ismdownloaderAVC1 "http://media.onet.pl/_ms/ac41b2e7-f84b-45dc-8101-83345c197bd0.1498143227.339679.ism/Manifest" output.mkv
    
    livestreamer "hds://http://media.onet.pl/_ms/ac41b2e7-f84b-45dc-8101-83345c197bd0.1498143227.339679.ism/Manifest.f4m" best -o output.flv
    
    livestreamer "hlsvariant://http://media.onet.pl/_ms/ac41b2e7-f84b-45dc-8101-83345c197bd0.1498143227.339679.ism/Playlist.m3u8" best -o output.ts
    Quote Quote  
  3. Originally Posted by ponens View Post
    youtube-dl supports onet.pl and dash directly.

    Other alternatives are ismdownloaderAVC1, livestreamer, and streamlink.

    Code:
    ismdownloaderAVC1 "http://media.onet.pl/_ms/ac41b2e7-f84b-45dc-8101-83345c197bd0.1498143227.339679.ism/Manifest" output.mkv
    
    livestreamer "hds://http://media.onet.pl/_ms/ac41b2e7-f84b-45dc-8101-83345c197bd0.1498143227.339679.ism/Manifest.f4m" best -o output.flv
    
    livestreamer "hlsvariant://http://media.onet.pl/_ms/ac41b2e7-f84b-45dc-8101-83345c197bd0.1498143227.339679.ism/Playlist.m3u8" best -o output.ts
    I already tried youtube-dl when I post this thread, but didn't work. Right after oepning this thread, I posted this issue on youtube-dl's github as well and got the notice they added the additional code(?) to onet.py to make it work with this kind of url. ( I think not every videos on onet.pl were embedded same way. This video url I posted here didn't work with the old onet.py)
    https://github.com/rg3/youtube-dl/commit/bd65f181532ab4e535b408d3ccf99723534eb326

    It's not released yet, so still doesn't work with youtube-dl.

    I checked the code they added and noticed it needs mvp id to get the video file.
    I looked the mvpid up on network traffics and got the correct manifest url.

    anyway, all good
    Soon, with the new release of youtube-dl, it will work with it.

    Oh, I just checked youtube-dl, a new version was released 5 hours ago
    It works now!
    Last edited by nzhd; 24th Jun 2017 at 23:41.
    Quote Quote  
  4. nzhd,
    I went to above page and could only find short (5 minutes or so) previews and advertisements. How many minutes is the video you want to download? Could you give the exact stream url for the download? Also, since you found that the latest youtube-dl will download it, could you please give me exact youtube-dl code (including url) that you used to download "the video"?
    Thank you. I want to make some tests on the latest youtube-dl and previous versions.
    Quote Quote  
  5. Originally Posted by jimdagys View Post
    nzhd,
    I went to above page and could only find short (5 minutes or so) previews and advertisements. How many minutes is the video you want to download? Could you give the exact stream url for the download? Also, since you found that the latest youtube-dl will download it, could you please give me exact youtube-dl code (including url) that you used to download "the video"?
    Thank you. I want to make some tests on the latest youtube-dl and previous versions.
    It's 2m 57s.

    The manifest url is http://media.onet.pl/_ms/ac41b2e7-f84b-45dc-8101-83345c197bd0.1498143227.339679.ism/Manifest
    You can use ismdownloaderavc1 with the url above.
    Code:
    ismdownloaderavc1 "http://media.onet.pl/_ms/ac41b2e7-f84b-45dc-8101-83345c197bd0.1498143227.339679.ism/Manifest" "output.mkv"
    or

    youtube-dl with the webpage url "http://film.onet.pl/pensjonat-nad-rozlewiskiem-relacja-z-planu-serialu/y428n0" since it supports the site now.

    To see all the resolution available.
    Code:
    youtube-dl -F "http://film.onet.pl/pensjonat-nad-rozlewiskiem-relacja-z-planu-serialu/y428n0"
    To download
    Code:
    youtube-dl -f (select the format code you want to download) "http://film.onet.pl/pensjonat-nad-rozlewiskiem-relacja-z-planu-serialu/y428n0"
    Quote Quote  
  6. Member
    Join Date
    Nov 2018
    Location
    Italia
    Search PM
    Hi!
    I have a similar problem, wich I can't really solve.

    I have this link https://nbanlds245vod.akamaized.net/nlds_vod/nba/vod/2018/11/04/drm/nlncp/21800136/d4b...t=0&uid=134324 wich is a manifest to a series of m4s files.

    Tried to download with youtube-dl and streamlink whitout succes. Anyone know what could be the solution?

    Thanks in advance.
    Quote Quote  
  7. You want this Chrome/FF extension for DASH/MPD streams:

    Video DownloadHelper

    http://www.downloadhelper.net/
    https://chrome.google.com/webstore/detail/video-downloadhelper/lmjnegcaeklhafolokijcfjliaokphfk

    Trying to download an MPD today (not from YT) led me here. I got 403 errors in streamlink, a "sourceURL" error in youtube-dl, and a manifest root (<SmoothStreaming>) error in ISM which led me to this extension. It worked perfectly. I can't believe I've never seen it before.
    Last edited by Wakafox; 20th Dec 2018 at 15:29.
    Quote Quote  
  8. How to download files from ninateka, for example this? https://ninateka.pl/film/widze-bogdan-dziworski-1 I tried youtube-dl and ismdownloader but I'm getting "certificate verify failed" errors, dunno if I'm doing this correctly.
    Quote Quote  
  9. Originally Posted by bruno321 View Post
    How to download files from ninateka, for example this? https://ninateka.pl/film/widze-bogdan-dziworski-1 I tried youtube-dl and ismdownloader but I'm getting "certificate verify failed" errors, dunno if I'm doing this correctly.
    Use a browser's Developer Tools to get the manifest mpd link:

    Code:
    https://nina.as.rd.insyscd.net/video-16-9-widze-1988-rez-b-dziworski-w-plmov.smil/manifest.mpd
    Use that with youtube-dl:

    Code:
    youtube-dl "https://nina.as.rd.insyscd.net/video-16-9-widze-1988-rez-b-dziworski-w-plmov.smil/manifest.mpd"
    Quote Quote  
  10. Thank you for your reply. Doing that, I get the following message:

    Quote Quote  
  11. I got a 569 MB, 25 minute, mp4 file. Maybe it's a regional issue? I'm using a VPN in the USA. Make sure you have a recent version of youtube-dl:

    Code:
    youtube-dl -U
    Quote Quote  
  12. Average video editor Sviests's Avatar
    Join Date
    Sep 2018
    Location
    USA,Sweden
    Search Comp PM
    It works fine with streamlink

    Code:
    C:\Streamlink\bin>streamlink "https://nina.as.rd.insyscd.net/video-16-9-widze-1988-rez-b-dziworski-w-plmov.smil/manifest.mpd" best -o file.ts
    [cli][info] Found matching plugin dash for URL https://nina.as.rd.insyscd.net/video-16-9-widze-1988-rez-b-dziworski-w-plmov.smil/manifest.mpd
    [cli][info] Available streams: 288p (worst), 360p, 432p, 576p, 720p (best)
    [cli][info] Opening stream: 720p (dash)
    [download][file.ts] Written 63.0 MB (24s @ 3.0 MB/s)
    Wait till it downloads it. Output looks good to me.

    Also no VPN needed.
    Quote Quote  
  13. ffmpeg works too:

    Code:
    ffmpeg -i "https://nina.as.rd.insyscd.net/video-16-9-widze-1988-rez-b-dziworski-w-plmov.smil/manifest.mpd" output.mp4
    VLC can play the link too.
    Quote Quote  
  14. OK, so what was going on is that I'm only using Windows inside a virtual machine on a Mac, and somehow internet is not working there and I can't figure out how to fix it. So now I'm trying to get youtube-dl working on the Mac. But it seems ffmpeg has a Mac version -- are all these options you gave above equivalent, i.e. do they give the same output?

    Thanks for your help!

    EDIT -- nope, all of those require using brew or something similar, and all of that is broken in my machine somehow. Do you know of anything that works out of the box in a mac? Thanks.
    Last edited by bruno321; 7th Feb 2019 at 14:47.
    Quote Quote  
  15. Average video editor Sviests's Avatar
    Join Date
    Sep 2018
    Location
    USA,Sweden
    Search Comp PM
    Originally Posted by bruno321 View Post
    EDIT -- nope, all of those require using brew or something similar, and all of that is broken in my machine somehow. Do you know of anything that works out of the box in a mac? Thanks.
    1. Try adding this to youtube-dl line: --no-check-certificate (since you're getting SSL cert error)
    2. If you have VLC on mac you can try capturing it with it, open VLC and save it using convert/save network stream function
    Quote Quote  
  16. youtub-dl is not getting mpd
    ERROR: No video formats found; please report this issue on https://yt-dl.org/bug . Make sure you are using the latest version; see https://yt-dl.org/update on how to update. Be sure to call youtube-dl with the --verbose flag and include its complete output.
    Quote Quote  
  17. xD
    Last edited by slimozis; 14th Feb 2019 at 18:34.
    Quote Quote  
  18. I still doubt is it YouTube-dl ?
    Quote Quote  
  19. Originally Posted by slimozis View Post
    is it youtube-dl or any other because youtube-dl for mpd not working can u clarify this
    Quote Quote  
  20. Member
    Join Date
    Apr 2018
    Location
    Sunsari [Nepal]
    Search Comp PM
    Originally Posted by slimozis View Post
    Hello Why You Aren't Capturing Full Screenshot With Tools,

    Please Tell me About tool and Downloading Ways.

    You Just Captured Available Formats Details

    Please Provide Full Screenshot with Cmd Line Code and tools Name and

    And Tell Me About Downloading.. Please
    Quote Quote  
  21. u can get option buy typing help in any of these tool and about downloading u should be asking about the what tool it is
    Quote Quote  
  22. Member
    Join Date
    Apr 2018
    Location
    Sunsari [Nepal]
    Search Comp PM
    Originally Posted by kavisura9999 View Post
    u can get option buy typing help in any of these tool and about downloading u should be asking about the what tool it is
    Yeah, This was Right, We can Get Downloading Help, But What tool Was That ??

    Please Help Me to Find
    Quote Quote  
  23. Originally Posted by Daringbaaz View Post
    Originally Posted by kavisura9999 View Post
    u can get option buy typing help in any of these tool and about downloading u should be asking about the what tool it is
    Yeah, This was Right, We can Get Downloading Help, But What tool Was That ??

    Please Help Me to Find
    even i am asking the same thing to him
    Quote Quote  
  24. Originally Posted by kavisura9999 View Post
    Originally Posted by Daringbaaz View Post
    Originally Posted by kavisura9999 View Post
    u can get option buy typing help in any of these tool and about downloading u should be asking about the what tool it is
    Yeah, This was Right, We can Get Downloading Help, But What tool Was That ??

    Please Help Me to Find
    even i am asking the same thing to him
    it is youtube-dl only but it is modified one
    Quote Quote  
  25. how to solve?

    youtube-dl -F "https://vs15.userscontent.net/dash/1500971/manifest.mpd?seclink=q2b6TVsbyRO1nlDEZb0crA&sectim e=1550834208"
    [generic] manifest: Requesting header
    WARNING: Falling back on generic information extractor.
    [generic] manifest: Downloading webpage
    ERROR: Unable to download webpage: <urlopen error [Errno 8] _ssl.c:510: EOF occurred in violation of protocol>
    Quote Quote  
  26. Enter the url to this service. Which region?
    Quote Quote  
  27. What program can you get the link and download it for. I think this is mpd.

    https://www.axn.pl/programy/swat/videos/swat-101
    Quote Quote  



Similar Threads

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