Convert webm to mp4
There's an upcoming Mozilla trip to Hawaii on the cards and, in trying to be a good family man, I'm bringing my wife and two young sons. Glutton for punishment? Probably. Anyways, I've been feverishly downloading cartoons from YouTube using youtube-dl to put onto our new iPad to keep my oldest son occupied during the long flight.
It seems as though YouTube preserves the original video format, since sometimes youtube-dl provides a webm and other times a mp4. Since mp3s are iOS' best friend, I've needed to convert the webm files to mp4. The following ffmpeg command will make that happen:
ffmpeg -i "Spider-Man.webm" -qscale 0 "Spider-Man.mp4"
The qscale 0
directive instructs ffmpeg not to adjust quality of the video during conversion. And with this conversion I can now properly transfer the videos onto my iPad.
Check out my media tutorials for more magic when it comes to video, audio, and images. You're sure to learn a few tricks along the way.
![9 Mind-Blowing Canvas Demos]()
The <canvas>
element has been a revelation for the visual experts among our ranks. Canvas provides the means for incredible and efficient animations with the added bonus of no Flash; these developers can flash their awesome JavaScript skills instead. Here are nine unbelievable canvas demos that...
![9 Mind-Blowing WebGL Demos]()
As much as developers now loathe Flash, we're still playing a bit of catch up to natively duplicate the animation capabilities that Adobe's old technology provided us. Of course we have canvas, an awesome technology, one which I highlighted 9 mind-blowing demos. Another technology available...
![Introducing MooTools LazyLoad]()
Once concept I'm very fond of is lazy loading. Lazy loading defers the loading of resources (usually images) until they are needed. Why load stuff you never need if you can prevent it, right? I've created LazyLoad, a customizable MooTools plugin that...
![Use Elements as Background Images with -moz-element]()
We all know that each browser vendor takes the liberty of implementing their own CSS and JavaScript features, and I'm thankful for that. Mozilla and WebKit have come out with some interesting proprietary CSS properties, and since we all know that cementing standards...
Hello,
Have a look at this : https://www.onlinevideoconverter.com/firefox-addon
This Grease adds a “convert” video to Youtube. Everything is processed on their server and it’s pretty fast !
What about using the
--list-formats
argument with youtube-dl and download the MP4 that suits your needs?Suggested code doesn’t work (10/22/17), Ubuntu 16.04.3 amd64
“The encoder ‘aac’ is experimental but experimental codecs are not enabled, add ‘-strict -2’ if you want to use it.”
It now says “Please use -q:a or -q:v, -qscale is ambiguous”.
I guess
-q:v 0
would be the new substitute.