VideoHelp Forum



Support our site by donate $5 directly to us Thanks!!!

Try StreamFab Downloader and download streaming video from Netflix, Amazon!



+ Reply to Thread
Results 1 to 8 of 8
  1. Member
    Join Date
    Aug 2007
    Location
    Pakistan
    Search Comp PM
    Hi.

    Does Youtube dl download adult warning videos?

    For example, on below URL it says "Error : Content Warning". Does not download it. (Pls see attachment).

    https://www.youtube.com/watch?v=iMJ6BNYipv0

    Thanks for advice.
    Image Attached Thumbnails Click image for larger version

Name:	Capture.JPG
Views:	249
Size:	25.7 KB
ID:	45725  

    Quote Quote  
  2. Marsia Mariner
    Guest
    It seems Youtube itself has introduced a brand-new && brand-fäggy censorship algorithm......

    Content Warning

    The video you have requested has not been rated and may contain content intended for mature audiences.

    Learn more about partner ratings.

    Sign in to confirm your age
    Code:
    [K:\TEMPDIRS]
    => youtube-dl -F https://www.youtube.com/watch?v=iMJ6BNYipv0
    [youtube] iMJ6BNYipv0: Downloading webpage
    [youtube] iMJ6BNYipv0: Downloading embed webpage
    [youtube] iMJ6BNYipv0: Refetching age-gated info webpage
    [youtube] iMJ6BNYipv0: Extracting video information
    ERROR: Watch this video on YouTube. Playback on other websites has been disabled by the video ow
    ner.
    Quote Quote  
  3. Member
    Join Date
    Aug 2010
    Location
    San Francisco, California
    Search PM
    Trying using netrc authentication or passing your Google login in the command line.
    https://github.com/rg3/youtube-dl/blob/master/README.md#configuration
    Quote Quote  
  4. I had no trouble downloading that video from the USA with simply:

    Code:
    youtube-dl https://www.youtube.com/watch?v=iMJ6BNYipv0
    But when I set my VPN to Pakistan I get the content warning and no download. So use a proxy or VPN in some other country. For example, this USA proxy is working right now:

    Code:
    youtube-dl --proxy 35.189.179.23:3128 https://www.youtube.com/watch?v=iMJ6BNYipv0
    Last edited by jagabo; 25th May 2018 at 09:29.
    Quote Quote  
  5. Member
    Join Date
    Aug 2007
    Location
    Pakistan
    Search Comp PM
    Thanks for the great advice.

    After connecting through my VPN, I was able download the video from Youtube-dl normally.

    Highly grateful.
    Quote Quote  
  6. Member
    Join Date
    Aug 2007
    Location
    Pakistan
    Search Comp PM
    Hi.

    For following youtube video, youtube-dl gives a strange error (see attachment):

    https://youtu.be/Xl9qECvDSow

    The error says the video is incomplete but the video plays back normally on youtube.

    Any idea whats wrong?

    Regards.
    Image Attached Thumbnails Click image for larger version

Name:	Capture.JPG
Views:	179
Size:	39.1 KB
ID:	45864  

    Quote Quote  
  7. Hi seymoria ,

    Your request is wrong ! See below :
    Code:
    youtube-dl -F "https://youtu.be/watch?v=Xl9qECvDSow"
    .................
    [generic] watch?v=Xl9qECvDSow: Requesting header
    [redirect] Following redirect to https://www.youtube.com/watch?v=watch&feature=youtu.be&v=Xl9qECvDSow
    [youtube] Xl9qECvDSow: Downloading webpage
    [youtube] Xl9qECvDSow: Downloading video info webpage
    .................
    [info] Available formats for Xl9qECvDSow:
    format code  extension  resolution note
    249          webm       audio only DASH audio   52k , opus @ 50k, 3.05MiB
    250          webm       audio only DASH audio   69k , opus @ 70k, 3.69MiB
    171          webm       audio only DASH audio  114k , vorbis@128k, 5.90MiB
    140          m4a        audio only DASH audio  128k , m4a_dash container, mp4a.40.2@128k, 7.89MiB
    251          webm       audio only DASH audio  133k , opus @160k, 6.58MiB
    278          webm       256x144    144p   96k , webm container, vp9, 30fps, video only, 5.72MiB
    160          mp4        256x144    144p  112k , avc1.4d400c, 30fps, video only, 5.21MiB
    242          webm       426x240    240p  225k , vp9, 30fps, video only, 12.08MiB
    133          mp4        426x240    240p  406k , avc1.4d4015, 30fps, video only, 13.99MiB
    243          webm       640x360    360p  415k , vp9, 30fps, video only, 23.02MiB
    244          webm       854x480    480p  754k , vp9, 30fps, video only, 41.01MiB
    134          mp4        640x360    360p  771k , avc1.4d401e, 30fps, video only, 30.73MiB
    135          mp4        854x480    480p 1303k , avc1.4d401f, 30fps, video only, 50.82MiB
    247          webm       1280x720   720p 1511k , vp9, 30fps, video only, 76.17MiB
    136          mp4        1280x720   720p 2305k , avc1.4d401f, 30fps, video only, 77.05MiB
    17           3gp        176x144    small , mp4v.20.3, mp4a.40.2@ 24k, 4.84MiB
    36           3gp        320x180    small , mp4v.20.3, mp4a.40.2, 13.73MiB
    18           mp4        640x360    medium , avc1.42001E, mp4a.40.2@ 96k, 40.86MiB
    43           webm       640x360    medium , vp8.0, vorbis@128k, 51.24MiB
    22           mp4        1280x720   hd720 , avc1.64001F, mp4a.40.2@192k (best)
    Choosed format 17
    Code:
    youtube-dl -f 17 "https://youtu.be/watch?v=Xl9qECvDSow" -o video_seymoria.3gp
    .................
    [generic] watch?v=Xl9qECvDSow: Requesting header
    [redirect] Following redirect to https://www.youtube.com/watch?v=watch&feature=youtu.be&v=Xl9qECvDSow
    [youtube] Xl9qECvDSow: Downloading webpage
    [youtube] Xl9qECvDSow: Downloading video info webpage
    [download] Destination: video_seymoria.3gp
    .................
    [download] 100% of 4.84MiB in 01:27
    Cheers .
    JE SUIS CHARLIE !!!
    Quote Quote  
  8. Video 22 appears to be incomplete. I wasn't able to download it either. Delete the partial file and download a different one(s):

    Code:
    youtube-dl -F https://www.youtube.com/watch?v=Xl9qECvDSow
    
    [youtube] Xl9qECvDSow: Downloading webpage
    [youtube] Xl9qECvDSow: Downloading video info webpage
    [youtube] Xl9qECvDSow: Extracting video information
    [info] Available formats for Xl9qECvDSow:
    format code  extension  resolution note
    249          webm       audio only DASH audio   52k , opus @ 50k, 3.05MiB
    250          webm       audio only DASH audio   69k , opus @ 70k, 3.69MiB
    171          webm       audio only DASH audio  114k , vorbis@128k, 5.90MiB
    140          m4a        audio only DASH audio  128k , m4a_dash container, mp4a.40.2@128k, 7.89MiB
    251          webm       audio only DASH audio  133k , opus @160k, 6.58MiB
    278          webm       256x144    144p   96k , webm container, vp9, 30fps, video only, 5.72MiB
    160          mp4        256x144    144p  112k , avc1.4d400c, 30fps, video only, 5.21MiB
    242          webm       426x240    240p  225k , vp9, 30fps, video only, 12.08MiB
    133          mp4        426x240    240p  406k , avc1.4d4015, 30fps, video only, 13.99MiB
    243          webm       640x360    360p  415k , vp9, 30fps, video only, 23.02MiB
    244          webm       854x480    480p  754k , vp9, 30fps, video only, 41.01MiB
    134          mp4        640x360    360p  771k , avc1.4d401e, 30fps, video only, 30.73MiB
    135          mp4        854x480    480p 1303k , avc1.4d401f, 30fps, video only, 50.82MiB
    247          webm       1280x720   720p 1511k , vp9, 30fps, video only, 76.17MiB
    136          mp4        1280x720   720p 2305k , avc1.4d401f, 30fps, video only, 77.05MiB
    17           3gp        176x144    small , mp4v.20.3, mp4a.40.2@ 24k
    36           3gp        320x180    small , mp4v.20.3, mp4a.40.2
    43           webm       640x360    medium , vp8.0, vorbis@128k
    18           mp4        640x360    medium , avc1.42001E, mp4a.40.2@ 96k
    22           mp4        1280x720   hd720 , avc1.64001F, mp4a.40.2@192k (best)
    For example:

    Code:
    youtube-dl -f 136+140 https://www.youtube.com/watch?v=Xl9qECvDSow
    Quote Quote  



Similar Threads

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