You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I download long audio files that don't output directly to MP3 and need to be converted, it takes a while and I don't see the progress. As far as I know, ffmpeg converts the audio. Can I get the conversion progress or the FFmpeg output?
The text was updated successfully, but these errors were encountered:
When I download long audio files that don't output directly to MP3 and need to be converted, it takes a while and I don't see the progress. As far as I know, ffmpeg converts the audio. Can I get the conversion progress or the FFmpeg output?
Are you using RunWithOptions? There are a couple things that make using RunWithOptions problematic for me. To solve the problem I ran into I ended up copying the code in that method into my own project and modifying it to accept a single url and the IProgress parameters, as well as return a RunResult<string> object containing the DownloadLocation instead of RunResult<string[]>
It worked well so I have created a second RunWithOptions method in YoutubeDLSharp that supports this and I will be submitting a Pull Request soon.
If you are using a method other than RunWithOptions all the others should accept IProgress parameters for output and progress.
When I download long audio files that don't output directly to MP3 and need to be converted, it takes a while and I don't see the progress. As far as I know, ffmpeg converts the audio. Can I get the conversion progress or the FFmpeg output?
The text was updated successfully, but these errors were encountered: