iBR

Results 77 comments of iBR

From https://github.com/yt-dlp/yt-dlp#deprecated > [avconv and avprobe](https://www.libav.org/) - Now deprecated alternative to ffmpeg. License [depends on the build](https://libav.org/legal)

I can't reproduce the issue, it works fine on my phone Samsung Galaxy S9 plus Android 10.

Maybe we should use WorkManager. Edit: Checkout [dvd](https://github.com/yausername/dvd), a video downloader app based on this library it is using WorkManager.

yes, with workmanager you can download a video and convert it to mp3 even if the video is more than 3 hours the download will continue in the background.

For example ```java Constraints.Builder builder = new Constraints.Builder().setRequiredNetworkType(NetworkType.CONNECTED); // Passing params Data.Builder data = new Data.Builder(); data.putString("tag", tag); data.putString("url", url); data.putString("title", title); data.putString("format", format); OneTimeWorkRequest syncWorkRequest = new OneTimeWorkRequest.Builder(DownloadWorker.class) .addTag(tag)...

It only works on internal storage, maybe you may need permission to access external storage.

When the download starts, a temporary file is created and after the download is complete, it is transferred. Take a look at https://github.com/yausername/dvd/blob/master/app/src/main/java/org/yausername/dvd/work/DownloadWorker.kt I haven't tried setting the path directly...

Is the problem solved?

No answer so I'm closing. Please feel free to open a new issue if you find another bug.

> if I changed to "https://vimeo.com/T9EKCoYlhZA" is wrong. The videoId isn't used this way? The link is incorrect when trying to open it in the browser.