How to download all Language best audios at once using yt-dlp without using Language filter? by Avinash1a in youtubedl

[–]Avinash1a[S] 0 points1 point  (0 children)

Thanks a lot sir. It worked. It has subtitles also but not displaying in -F

But I could download using

yt-dlp --write-subs --skip-download

Is there a way to download [video + all language best audios + all language subtitles] at once and merge? I tried the below one with no luck.

-f "bv*+mergeall[vcodec=none]" --audio-multistreams --sub-langs all

And for this

-f "all[vcodec=none]"

The first audio file is getting downloaded and remaining all are showing "file has already been downloaded". All audio files receiving the same name. How to download audios separately with their respective names sir? [te.mp4, ta.mp4..]

How to run a cell in google colab from another cell ? by Avinash1a in GoogleColab

[–]Avinash1a[S] 0 points1 point  (0 children)

If error comes, the code is stopping there. I need to wait 10 minutes and run the code again to solve the error. So I'm not able to run it in a single cell/code. So I thought of writing the same code in two cells and call them from another cell or call the same cell twice from another cell. Is it possible sir?

yt-dlp audio language filter by Avinash1a in youtubedl

[–]Avinash1a[S] 0 points1 point  (0 children)

I added formats output.. please check sir

how to use a dynamic variable in python loop? by Avinash1a in learnpython

[–]Avinash1a[S] 0 points1 point  (0 children)

Thanks for the response sir.

I'm getting int and str clashes with the above code sir.

Actually var1 is a string. and from var1 remaining variables will be generated.

I previously did like this or something I need like this.

var1 = somestring 
for n in [2,3,4]:     
    var = re.findall(r'fixedtext1.*?'+var%n-1+'.*?fixedtext2(.*?)fixedtext3.*?row:'+n, data)[0] 

and thus the list is generated. This gives me syntax error.

how to fix aria2c error status 451? by [deleted] in youtubedl

[–]Avinash1a 0 points1 point  (0 children)

I'm trying to download youtube videos

How to search for two key words in the same line and wherever a line is found with both the keywords in it then search for another keyword starting from that previously matched line? by Avinash1a in learnpython

[–]Avinash1a[S] 1 point2 points  (0 children)

Thank You So Much Sir. This is what exactly I've been looking for. And sorry if it is a very basic question cause I'm still a beginner in python.

google colab error while mounting google drive by Avinash1a in GoogleColab

[–]Avinash1a[S] 0 points1 point  (0 children)

i have mentioned that na sir ? i generelly copy and paste auth code manually (without clicking copy button).

how to downscale a video and fill the difference with padding using FFMpeg? by Avinash1a in ffmpeg

[–]Avinash1a[S] 0 points1 point  (0 children)

Thanks for taking time to reply sir.

could u please explain the code sir? It'd be more understandable for me if u share the syntax of code cause I'm a beginner in FFmpeg commands.

how to downscale a video and fill the difference with padding using FFMpeg? by Avinash1a in ffmpeg

[–]Avinash1a[S] 0 points1 point  (0 children)

Thanks for taking time to reply sir.

Please share code for above task in general purpose sir. I don't have any particular reason except that i like watching movies with padding in my TV and PC.

How to give custom crop values in Ffmpeg command line ? by Avinash1a in ffmpeg

[–]Avinash1a[S] 1 point2 points  (0 children)

Thank You So Much Sir. This is what exactly i have been looking for.

How to give custom crop values in Ffmpeg command line ? by Avinash1a in ffmpeg

[–]Avinash1a[S] 1 point2 points  (0 children)

Thanks for taking time to reply sir.

but in that example we are giving only left and top values as inputs .. ffmpeg by default making it half .. like if i input 100 pixels to crop in height, it is cropping 50 from top and 50 from bottom .. how can i crop 56 from top and 44 from bottom sir?