So you have this gameplay video you want to show off, but you can't be bothered uploading it to youtube?
Fret no more!
Just upload it as an attachment (the rule of 10 MB still applies) and it'll be embedded in all of it's glory!
Here's an example:
Enjoy!
WebM attachments now embedded using HTML5 video tags!
- Robin
- The Omniscient
- Posts: 6506
- Joined: Fri Feb 20, 2009 4:29 pm
- Location: The Netherlands
- Contact:
Re: WebM attachments now embedded using HTML5 video tags!
Golly, how festive!
Help us help you: attach a .love.
Re: WebM attachments now embedded using HTML5 video tags!
Weeee!
Excellent work.Shallow indentations.
- Thursdaybloom
- Citizen
- Posts: 81
- Joined: Mon Feb 15, 2010 3:43 am
- Location: Australia
Re: WebM attachments now embedded using HTML5 video tags!
I'm met with a video-sized black box with a grey X in the middle. Underneath is the name of the embedded file which links to a download of a *.webm file. I obviously fail to meet the dress code and am not allowed into your club.
- TechnoCat
- Inner party member
- Posts: 1611
- Joined: Thu Jul 30, 2009 12:31 am
- Location: Milwaukee, WI
- Contact:
Re: WebM attachments now embedded using HTML5 video tags!
What is a good way to do a screencap on Windows encoded as WebM?
Re: WebM attachments now embedded using HTML5 video tags!
Wait for Firefox 4.Thursdaybloom wrote:I'm met with a video-sized black box with a grey X in the middle. Underneath is the name of the embedded file which links to a download of a *.webm file. I obviously fail to meet the dress code and am not allowed into your club.
Record a video with any screencaster, use ffmpeg to re-encode it to WebM.TechnoCat wrote:What is a good way to do a screencap on Windows encoded as WebM?
- TechnoCat
- Inner party member
- Posts: 1611
- Joined: Thu Jul 30, 2009 12:31 am
- Location: Milwaukee, WI
- Contact:
Re: WebM attachments now embedded using HTML5 video tags!
Be impatient.thelinx wrote:Wait for Firefox 4.
- nevon
- Commander of the Circuloids
- Posts: 938
- Joined: Thu Feb 14, 2008 8:25 pm
- Location: Stockholm, Sweden
- Contact:
Re: WebM attachments now embedded using HTML5 video tags!
Or just record it with ffmpeg directly. No re-encoding necessary.thelinx wrote:Record a video with any screencaster, use ffmpeg to re-encode it to WebM.TechnoCat wrote:What is a good way to do a screencap on Windows encoded as WebM?
Re: WebM attachments now embedded using HTML5 video tags!
Hm, always depends what you need and want.TechnoCat wrote:What is a good way to do a screencap on Windows encoded as WebM?
Like thelinx said, you probably want to encode it after you captured it. There are not many applications that give you the option to use your own codec and VP8 editing sounds like it could be painful.
Here's what I have experience with:
There's FRAPS which captures stuff that uses Direct3D/OpenGL. Because the recording is lossless(*) it requires a fast CPU and hard disk for higher resolutions. Since Aero uses Direct3D it can capture the whole desktop. Never used this feature myself, I'm a "classic" guy.
(* It switches to a different colorspace with HD resolutions for performance reasons. It's possible to force RGB though.)
There's also VirtualDub. It has a neat screen capture feature in its "capture AVI" mode. Unlike FRAPS you have to configure everything yourself and learn what all the little options do. Like "Disk I/O" in the capture menu, where the default setting for the buffers is too small for lossless recordings. And because it uses the old audio interface it can't record the audio, unless your driver provides a loopback (stereo mix, what u hear, ...) that can be selected.
You can choose any of the installed VfW codecs on your system that support RGBA.
I can recommend the Ut Video Codec Suite (latest version / readme). It's lossless, fully multithreaded, and the compression is ok. Problem is, FFmpeg can't read it. You have to use avisynth or convert it to something like Huffyuv (or use that codec in the first place, if it's fast enough).
Didn't use anything else long enough to recommend it.
I encoded only a few WebM videos with the reference encoder that only accepts raw input. It's available on the Google Code WebM download site.
You can get a Windows FFmpeg build here. Sadly, those autobuilds were stopped because he's on vacation and is apparently annoyed with the troll driven development of FFmpeg.
If you're unfamiliar with FFmpeg be warned: It might give you serious head scratching. It's a collection of audio and video encoder/decoders, format muxers/demuxers and some other stuff. Most are included in the actual source code of the project, some are added with libraries. Simple conversion are easy to do, but it's hard to fine tune stuff. Not all options of the encoders are exposed or documented (at least in the standalone exectuable). Maybe someone else has more experience with it.
The following line encodes the input video with VP8 and Vorbis at bitrates of 1 Mbit for video and 128 Kbits for audio:
Code: Select all
ffmpeg.exe -i input.avi -vcodec libvpx -acodec libvorbis -b 1000k -ab 128k output.webm
Shallow indentations.
Who is online
Users browsing this forum: Google [Bot] and 2 guests