alexta69 / metube

Self-hosted YouTube downloader (web UI for youtube-dl / yt-dlp)
GNU Affero General Public License v3.0
3.95k stars 259 forks source link

Recode progress bar? #424

Open SenorSmartyPants opened 2 months ago

SenorSmartyPants commented 2 months ago

I've set up yt-dlp to recode my downloads. This works fine, but metube does not update the progress bar to reflect what is happening.

Is there some option I should set to make this happen? Or is this something metube does not currently support?

This is the options file I am using

{
  "verbose": "true",
  "format": "bestvideo[ext=mp4][vcodec*=avc1]+bestaudio[ext=m4a]/b[vcodec*=avc1]",
  "postprocessors": [ {"key": "FFmpegCopyStream"} ],
  "postprocessor_args": {
    "merger": ["-metadata:s", "title=", "-metadata:s", "handler_name="],
    "copystream": ["-c:v", "libx264", "-c:a", "copy"]
  }
}