More than one link at "video or playlist URL"
I think, when you ar downloading from outside of youtube, and you have a lot of links, one for each episode, you have to put it one by one, and is a lot of wasted time, if it can read a lot of links at the same time, i think it will be a good feature, Too many thanks for metube, i use it on unraid, and is too clear and fine.
Interesting idea, if someone wants to take on implementing it, let's discuss what's the best way to do it.
cat test.txt | while read line
do
curl -X POST -H "Content-Type:application/json" -d '{"format":"mp4","quality":"best","url":"'${line}'"}' http://metube:8081/add
done
or just adding the videos to the playlist and then add the playlist to metube
We could just do something like having links comma separated if that's what you had in mind @cryptontgn.
Was there any movement on this? I have about 5000 links I need to process, not really looking forward to pasting them one at a time.
@Cwis3man Well, this is how it is with Open Source maintained by volunteers -- the disadvantage is that the maintainers don't necessarily work for other people, but mostly for themselves, so one can't quite grumble about their favorite feature not being worked on, and the advantage is that you can implement things yourself, and we'll be very happy to merge your PR if it's done well :)
Either way, 5000 downloads is way beyond what the MeTube GUI is able to display gracefully, I'm afraid. And MeTube is just the GUI, the downloader itself is yt-dlp. For this use case, I would really recommend using yt-dlp directly from the command line, perhaps in a loop, similar to how @PikuZheng described it above. I don't think that MeTube is at all suitable or helpful here.