Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New site - obscure? #2118

Closed
Zotter opened this issue Jan 8, 2014 · 2 comments
Closed

New site - obscure? #2118

Zotter opened this issue Jan 8, 2014 · 2 comments

Comments

@Zotter
Copy link

@Zotter Zotter commented Jan 8, 2014

Attempting to download from a German site - maybe too obscure to consider - results as follows:

]$ youtube-dl -v http://www.3sat.de/mediathek/?mode=play&obj=40426
[1] 8389
[xxxxxxx@serenity Videos]$ [debug] System config: ['--prefer-free-formats']
[debug] User config: []
[debug] Command-line args: ['-v', 'http://www.3sat.de/mediathek/?mode=play']
[debug] Encodings: locale 'UTF-8', fs 'UTF-8', out 'UTF-8', pref: 'UTF-8'
[debug] youtube-dl version 2014.01.07.5
[debug] Python version 2.7.5 - Linux-3.11.10-301.fc20.x86_64-x86_64-with-fedora-20-Heisenbug
[debug] Proxy map: {}
[generic] ?mode=play: Requesting header
WARNING: Falling back on generic information extractor.
[generic] ?mode=play: Downloading webpage
[generic] ?mode=play: Extracting information
ERROR: Unsupported URL: http://www.3sat.de/mediathek/?mode=play; please report this issue on https://yt-dl.org/bug . Be sure to call youtube-dl with the --verbose flag and include its complete output. Make sure you are using the latest version; type youtube-dl -U to update.
Traceback (most recent call last):
File "/usr/bin/youtube-dl/youtube_dl/YoutubeDL.py", line 489, in extract_info
ie_result = ie.extract(url)
File "/usr/bin/youtube-dl/youtube_dl/extractor/common.py", line 155, in extract
return self._real_extract(url)
File "/usr/bin/youtube-dl/youtube_dl/extractor/generic.py", line 340, in _real_extract
raise ExtractorError('Unsupported URL: %s' % url)
ExtractorError: Unsupported URL: http://www.3sat.de/mediathek/?mode=play; please report this issue on https://yt-dl.org/bug . Be sure to call youtube-dl with the --verbose flag and include its complete output. Make sure you are using the latest version; type youtube-dl -U to update.

@phihag
Copy link
Contributor

@phihag phihag commented Jan 8, 2014

youtube-dl can download the full URL just fine, but never gets it in full, because your shell is interpreting the ampersand. (Note [1] 8389 and the abbreviated URL in the output of youtube-dl). Use quotes to prevent your shell from interpreting ampersands:

youtube-dl 'http://www.3sat.de/mediathek/?mode=play&obj=40426'
# or
youtube-dl "http://www.3sat.de/mediathek/?mode=play&obj=40426"
@phihag phihag closed this Jan 8, 2014
@Zotter
Copy link
Author

@Zotter Zotter commented Jan 9, 2014

Thank you!

That is working perfectly.

Tate

Date: Wed, 8 Jan 2014 08:36:03 -0800
From: notifications@github.com
To: youtube-dl@noreply.github.com
CC: zotter@hotmail.com
Subject: Re: [youtube-dl] New site - obscure? (#2118)

youtube-dl can download the full URL just fine, but never gets it in full, because your shell is interpreting the ampersand. (Note [1] 8389 and the abbreviated URL int he output of youtube-dl). Use quotes to prevent your shell from parsing URLs:

youtube-dl 'http://www.3sat.de/mediathek/?mode=play&obj=40426'

or

youtube-dl "http://www.3sat.de/mediathek/?mode=play&obj=40426"


Reply to this email directly or view it on GitHub.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Linked pull requests

Successfully merging a pull request may close this issue.

None yet
2 participants
You can’t perform that action at this time.