Have something to say?

Tell us how we could make the product more useful to you.

Allow yt-dlp arguments. Add metadata to songs.

Currently downloaded songs do not have metadata such as cover art embedded. There is also no option to change the audio extension. The default is mp3. m4a provides better quality at lower file sizes. Allowing user arguments could resolve these issues, as well as other preferences other uses might have. Here is an example yt-dlp config I use with termux that could be set as the default to add metadata to songs. SONGS="$HOME/storage/shared/Music" EXT="m4a" if [[ $1 == *"music.youtube.com"* ]]; then if [[ ! -d "$SONGS" ]]; then mkdir -p "$SONGS" fi yt-dlp "$1" \ -f bestaudio[ext="$EXT"] \ --embed-thumbnail \ --ppa "ffmpeg: -c:v mjpeg -vf crop=\"'if(gt(ih,iw),iw,ih)':'if(gt(iw,ih),ih,iw)'\"" --convert-thumbnails jpg \ --add-metadata \ --metadata-from-title "%(artist)s - %(title)s" \ -o "$SONGS/%(artist)s - %(title)s.%(ext)s" fi

sk4g About 1 month ago

Planned

Add Metadata to RSS Feed Notifications

As my cloud provider isn’t natively supported and no further providers are planned, I’ve made my own solution. To minimise API calls, it seems sensible to use the RSS Feed Notifications to trigger actions. However, there isn’t a lot of information in the feeds, which requires matching and reconcilliation via the API. It would be helpful for developers, while minimising strain on your servers to include metadata (already accessibile via the api) in the feed itself e.g. TorBox Notifications https://api.torbox.app/v1/api/notifications/rss?token=abcdefg-9876543 TorBox Notifications Torrent Ready To Download Your torrent Ubuntu 22.04 LTS has finished processing and is ready to download. 2900756 2025-02-24T00:03:05Z torrent 1265425 true 3650722202

heavy_dust87 4 months ago

1