Youtube_dl : 오류: YouTube에서 다음과 같이 말했습니다.비디오 데이터를 추출할 수 없습니다. 나는 Python 3로 작은 그래픽 인터페이스를 만들고 있는데 그것의 URL이 있는 유튜브 비디오를 다운로드해야 합니다. 나는 그것을 사용했습니다.youtube_dl모듈을 사용합니다.내 코드입니다. import youtube_dl # Youtube_dl is used for download the video ydl_opt = {"outtmpl" : "/videos/%(title)s.%(ext)s", "format": "bestaudio/best"} # Here we give some advanced settings. outtmpl is used to define the path of the vid..