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.
My trip to Mozilla Summit 2013 was incredible. I've spent so much time focusing on my project that I had lost sight of all of the great work Mozillians were putting out. MozSummit provided the perfect reminder of how brilliant my colleagues are and how much...
One major problem with creating UI components with the MooTools JavaScript framework is that there isn't a great way of allowing customization of template and ease of node creation. As of today, there are two ways of creating:
new Element Madness
The first way to create UI-driven...
If you haven't heard of Woot.com, you've been living under a rock. For those who have been under the proverbial rock, here's the plot:
Every day, Woot sells one product.
Once the item is sold out, no more items are available for purchase.
You don't know how many...
Usability is a key feature when creating user interfaces; it's all in the details. I was recently using my iPhone and it dawned on my how awesome the "x" icon is in its input elements. No holding the delete key down. No pressing it a...
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.