3.
-
videonun orijinal linki:
https://www.youtube.com/watch?v=bCFGcEH3Q3w
dosyaları istediğim formata dönüştürmek hazır scriptler kullanıyorum, web siteleriyle uğraşmam:
import yt_dlp
url = 'https://www.youtube.com/watch?v=bCFGcEH3Q3w' ;
output_path = '/home/kratertepesi/Masaüstü/%(title)s.360p.mp4'
ydl_opts = {
'format': 'bestvideo[height<=360]+bestaudio/best[height<=360]',
'outtmpl': output_path,
'merge_output_format': 'mp4',
'noplaylist': True,
'quiet': False,
'no_warnings': True,
'socket_timeout': 20, # saniye cinsinden timeout
}
with yt_dlp.YoutubeDL(ydl_opts) as ydl:
ydl.download([url])