1,016 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
Tooling
1
vote
2
replies
60
views
From image to YouTube url?
I have an image and would like to get the URL of the Youtube videos (with the exact time) where this image (or similar) appears inside.
I've already seen a site that does this ( https://findthisbase....
1
vote
0
answers
89
views
YouTube video fetching fails in Docker with "python not found" and unplayable content errors
I'm building a YouTube video info. fetcher using Remix, Node.js, and yt-dlp. It works locally, but fails in Docker with several issues (see output below):
Python not found when trying to use yt-dlp ...
0
votes
1
answer
238
views
Downloading content of Youtube Audio file directly to Azure Blob Storage
I am trying to download youtube videos / audio files and upload them to Azure Blob Storage without downloading them locally. I am using yt-dlp as it seems to be the most robust tool for my task.
I've ...
4
votes
2
answers
1k
views
Figuring out google hashing algorithm for SAPISIDHASH used on youtube subscribe button
I have been writing youtube bot functionality for subscribing channels for which youtube sends an authorization header as authentication mechanism,now as per this question the hashing algorithm used ...
1
vote
0
answers
1k
views
How to add custom extractor to yt-dlp?
I want to make a custom extractor for https://www.buzzsprout.com in order to extract season and episode numbers in addition to what generic extractor already does.
This is my script saved at:
/usr/lib/...
1
vote
1
answer
2k
views
PytubeFix and others libraries doesnt work very well
When I download in 'highest resolution', the video always downloads in 640x360, no matter how I "reformulate" it.
I think maybe it is downloading this preview:
previewing a video on the ...
0
votes
1
answer
934
views
ytdlp download video with fixed output path
By default, ytdl adds an extension to the file and I am trying to avoid that.
I created the function below to save video files exactly at output_path (will be further used by some other function).
...
3
votes
0
answers
877
views
Correct option to download from youtube with video resolution of 1080p using youtube-dl?
To download youtube videos manually I typically use : https://y2meta.app/en/youtube/rU8_Fg103ZQ 's
[1080p (.mp4) full-HD] resolution.
Now I am looking to replicate the same via code using python's ...
0
votes
0
answers
179
views
Error when I try to play music from a YouTube link
So I tried to make my own discord.py bot with the function to play music from Youtube. Everytime I run it tho, the bot does join the voice channel, but it gives an error and doesn't play anything:
...
0
votes
1
answer
1k
views
yt-dlp and youtube-dl command in Android Studio(Java code)
I am trying to use yt-dlp command in my java code to extract audio from youtube videos. Basically, I am trying to develop one audio playing application(for better understanding on working with API) ...
0
votes
0
answers
180
views
youtube-dl-exec in typescript "not callable"
This is my code
import youtubeDl from 'youtube-dl-exec';
const run = async () => {
const output = await youtubeDl('https://www.youtube.com/watch?v=6xKWiCMKKJg', {
dumpSingleJson: true,
...
0
votes
0
answers
241
views
Discord bot is connecting to the voice channel but not playing the music with YouTube URL
I am making a discord bot and trying to add some music related commands to my bot. The Main issue is that the bot is connecting to the voice channel where the user is but not playing the music from ...
0
votes
1
answer
934
views
ytdl-core and play-dl interruption problem
The audio will suddenly pause when I'm halfway through playing, and it will show
AudioPlayerError: aborted
I have seen bug issues here(GitHub) , but no one has come up with a solution until 2024
use ...
1
vote
1
answer
1k
views
Pytube not downloading videos in high quality
So I've been trying to download YouTube videos in 720p using pytube. This is my code:
from pytube import YouTube
yt = YouTube('https://www.youtube.com/watch?v=xxxxxxx')
stream = yt.streams....
1
vote
0
answers
2k
views
error video using youtube-dl; "Unable to extract uploader id"
i want download video from youtube using youtube-dl library
this my code:
import youtube_dl
video_url = "https://www.youtube.com/watch?v=w9Fcgdlw-Nc"
desired_format = 'mp4'
ydl_opts = {
...