question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Not sure if bug: format string not working on Rumble and others

See original GitHub issue

Checklist

Question

Hello, 😃 I’ve been using this format string to download videos in 720p or less: -f 'bestvideo[height<="720"][ext=mp4][vcodec!*=av01]+bestaudio[ext=m4a]/mp4' It works for YouTube and some others, but now fails for Rumble and some others. The latter will always download in 1080 instead. This: -f 'mp4-720p' works for Rumble. Is there any way to make up a universal string that gets the desired behavior from all of them?

Verbose log

No response

Issue Analytics

  • State:closed
  • Created 2 years ago
  • Comments:9 (4 by maintainers)

github_iconTop GitHub Comments

1reaction
pukkandancommented, Feb 11, 2022

You are right. * doesn’t help here. Do this instead

❯ yt-dlp https://rumble.com/vrmh11-breaking-bad-i-am-the-danger-scene-s4-e6-1080p.html -f "bv[height<=720][ext=mp4][vcodec!*=?av01]+ba[ext=m4a]/mp4[height<=720][vcodec!*=?av01]"
[generic] vrmh11-breaking-bad-i-am-the-danger-scene-s4-e6-1080p: Requesting header
WARNING: [generic] Falling back on generic information extractor.
[generic] vrmh11-breaking-bad-i-am-the-danger-scene-s4-e6-1080p: Downloading webpage
[generic] vrmh11-breaking-bad-i-am-the-danger-scene-s4-e6-1080p: Extracting information
[RumbleEmbed] vp0ax5: Downloading JSON metadata
[info] vp0ax5: Downloading 1 format(s): mp4-720p
ERROR: Interrupted by user
Terminate batch job (Y/N)?

or,

❯ yt-dlp https://rumble.com/vrmh11-breaking-bad-i-am-the-danger-scene-s4-e6-1080p.html -S res:720,ext:mp4:m4a,vcodec:h264
[generic] vrmh11-breaking-bad-i-am-the-danger-scene-s4-e6-1080p: Requesting header
WARNING: [generic] Falling back on generic information extractor.
[generic] vrmh11-breaking-bad-i-am-the-danger-scene-s4-e6-1080p: Downloading webpage
[generic] vrmh11-breaking-bad-i-am-the-danger-scene-s4-e6-1080p: Extracting information
[RumbleEmbed] vp0ax5: Downloading JSON metadata
[info] vp0ax5: Downloading 1 format(s): mp4-720p
ERROR: Interrupted by user
Terminate batch job (Y/N)?
0reactions
xxxLCxxxcommented, Feb 12, 2022

Thank you very much! 😃 The -S flavor is straightforward. I like it.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Format String Bug Exploration | Infosec Resources
Although, this class of bug is not operating system–specific as with ... commands that do not exist in some other languages' format string...
Read more >
Add support for rumble.com · Issue #10785 · ytdl-org/youtube-dl
Bug report (encountered problems with youtube-dl) ... issue is a bug report, site support request or you are not completely sure provide the ......
Read more >
User Guide - runZero
Files\rumble\.env, while other platforms should use ... The warning below is expected and does not indicate a problem with the signature:.
Read more >
Season Two Launch Bug Reporting : r/rumbleverse - Reddit
If you are experiencing problems connecting to Rumbleverse, performance issues, or any other issues preventing you from being able to play ...
Read more >
Format String Bug - Red Team Notes
Format String bug appears in programs written in C, which means this bug is applicable to all operating systems that have a C...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found