Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Input Error
#2
It maybe be a bug with the library but I've never used it so I can't say for certain.

Have you thought about using other libraries? There's a very popular one called youtube-dl. It supports hundreds of sites including youtube. It has command line support as well. There is very many good python tutorials on it. https://www.bogotobogo.com/VideoStreamin...edding.php
The site provides this code:
# ydl1.py
from __future__ import unicode_literals
import youtube_dl

ydl_opts = {}
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
    ydl.download(['https://www.youtube.com/watch?v=dP15zlyra3c'])
You would need to modify it to have user input but that should't be too hard. If you read up on it, there are also many options you can provide like whether you want audio, the output file type and so on.
Reply


Messages In This Thread
Input Error - by Dream - Jul-12-2020, 01:01 AM
RE: Input Error - by DreamingInsanity - Jul-12-2020, 02:08 PM
RE: Input Error - by bowlofred - Jul-12-2020, 05:41 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Error in Using INPUT statement gunwaba 1 2,134 Jul-03-2022, 10:22 PM
Last Post: deanhystad
Star I'm getting syntax error while using input function in def. yecktmpmbyrv 1 2,008 Oct-06-2021, 09:39 AM
Last Post: menator01
  Pyspark SQL Error - mismatched input 'FROM' expecting <EOF> Ariean 3 48,230 Nov-20-2020, 03:49 PM
Last Post: Ariean
  EOF error while taking input ShishirModi 1 2,623 Sep-27-2020, 11:28 AM
Last Post: jefsummers
  Getting an error while using input function dcsethia 5 3,005 May-11-2020, 04:59 PM
Last Post: buran
  catch input type error mcmxl22 5 3,123 Aug-11-2019, 07:33 AM
Last Post: wavic
  inserting input gives me error message RubberNuggets 3 2,633 Jan-15-2019, 06:17 PM
Last Post: buran
  an input error or elif error , how can i fix this the_fire_pharaoh 1 2,382 Dec-15-2018, 09:47 PM
Last Post: Gribouillis
  Getting Error : User Input aankrose 1 3,031 Sep-06-2018, 04:55 PM
Last Post: buran
  Input error vijays3 1 2,658 May-30-2018, 08:50 AM
Last Post: snippsat

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020