ERROR: Unable to extract uploader id; 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.
sudo apt install youtube-dl 로 설치하면 실행은 되나 주소창에 주소 넣으면 위와 같이 오류나는 증상 해결방법 입니다
안되는 이유는 구버전이라 오류가 나네요 apt 업데이트 해도 소용 없습니다
깃허브 주소 https://github.com/yt-dlp/yt-dlp
이름이 youtube-dl 에서 yt-dlp 로 변경이 되었네요
wget https://github.com/yt-dlp/yt-dlp/releases/download/2023.03.04/yt-dlp_linux
다운받아서
chmod +x yt-dlp-linux 하시면 바로 실행 할수 있어요
sudo apt purge youtube-dl
로 지우시고
다운받은 폴더에서 콘솔창 뛰우고 sudo cp yt-dlp_linux /usr/bin/youtube-dl
로 실행하시면 youtube-dl 일 정상적으로 작동 될겁니다
일단 좋은 정보 감사합니다