search for: webmproject

Displaying 13 results from an estimated 13 matches for "webmproject".

2012 Jun 20
1
Next generation WebM and FLAC
James Haigh <james.r.haigh at gmail.com> > Note that 50% is silly, lossless compression is asymptotic. I 2nd Martin, > once you have high-density entropy, there's little more 'air' to > squeeze-out. 10-20% would be worth it if it helps adoption, although it's > worth studying how close we already are to the asymptote of entropy. How > much would be saved? How
2010 Jul 20
1
OpenCodecs release 0.84.17338
OpenCodecs release 0.84.17338 ----------------------------- OpenCodecs is a set of DirectShow filters for playing Ogg Vorbis, Speex, Theora, FLAC, and WebM files in Windows Media Player and other players. This release added WebM support (using versioned snapshots provided by The WebM Project), which determined the change of project's name from "Ogg Codecs" to "Open
2010 Jul 20
1
OpenCodecs release 0.84.17338
OpenCodecs release 0.84.17338 ----------------------------- OpenCodecs is a set of DirectShow filters for playing Ogg Vorbis, Speex, Theora, FLAC, and WebM files in Windows Media Player and other players. This release added WebM support (using versioned snapshots provided by The WebM Project), which determined the change of project's name from "Ogg Codecs" to "Open
2010 Jul 20
1
OpenCodecs release 0.84.17338
OpenCodecs release 0.84.17338 ----------------------------- OpenCodecs is a set of DirectShow filters for playing Ogg Vorbis, Speex, Theora, FLAC, and WebM files in Windows Media Player and other players. This release added WebM support (using versioned snapshots provided by The WebM Project), which determined the change of project's name from "Ogg Codecs" to "Open
2018 Dec 12
4
[RFC] Moving tools/llvm-mca/lib into lib/MCA
...e. As an example of how MCA can be used to improve scheduling, we have built a prototype machine scheduler that optimizes the simulated latency of a block of code under the constraints of the scheduling DAG. We've had interesting wins of 2-3% on assembly kernels for webp <https://github.com/webmproject/libwebp/commit/67748b41dbb21a43e88f2b6ddf6117f4338873a3> and gemmlowp <https://github.com/google/gemmlowp/pull/91>*. The patch is completely mechanical and can be seen here <https://reviews.llvm.org/D55557>. It only moves the files and updates all references. We'd like to hear...
2010 May 19
5
Guess everyone saw this already?
Google has opened up VP8, and has lined up about 40 companies/organizations (including xiph) in a coordinated launch: http://www.webmproject.org/ Anyone know where there are quality comparisons between H.264, Theora, and VP8? -SteveK
2012 Jun 19
1
flac-dev Digest, Vol 91, Issue 4
...wondering if there were any new compression > techniques that FLAC could use in a new version to improve compression > ratios. > > If so, it would be worth synchronising with WebM for compatibility reasons. > > Here's the WebM discussion: > > https://groups.google.com/a/webmproject.org/group/webm-discuss/browse_thread/thread/42fd53c71b2bcc74 > > Best regards, > James Haigh. > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: http://lists.xiph.org/pipermail/flac-dev/attachments/20120619/a226dda6/attachment.html > > ----...
2010 Jun 29
3
Theora and WeBM support in Firefox and Opera
I did some tests: ### Theora support in Firefox 3.7a (missnamed as "Minefield"): Same as since 3.5 (plays, no controls if Javascript off, no thorough retest of buffering issues). http://lists.xiph.org/pipermail/theora/2010-January/003369.html http://bugzilla.mozilla.org/show_bug.cgi?id=449358 ### WeBM support in Firefox 3.7a Seems to play (controls bug of course also there) and
2011 Nov 14
2
Uploading videos to Bugzilla and AppDB
I think that should be interesting if we could upload videos of the applications that we test on wine to the AppDB and Bugzilla. I recently tested the WebM encoder (http://www.webmproject.org/) from Google and it seems to produce videos with a great quality and small file sizes. The most recent versions of Chrome and Firefox are able to play this format nativily. This would help people share their problems and findings more properly. It would be very nice if we could put these video...
2011 May 07
5
Ogg Vorbis for internet explorer 9
Hello, I would like to know if there is a plugin for internet explorer 9 so that it supports playback of Ogg Vorbis files. In fact, I'm devellop a media site, and I use the tag <audio>. Since I want to promote ogg vorbis, I will require users to post their music in this format. For versions of Internet Explorer less than 9, I'll use a flash drive that can play ogg files. His name
2012 Jun 19
2
Next generation WebM and FLAC
...FLAC was designed a decade ago, I was wondering if there were any new compression techniques that FLAC could use in a new version to improve compression ratios. If so, it would be worth synchronising with WebM for compatibility reasons. Here's the WebM discussion: https://groups.google.com/a/webmproject.org/group/webm-discuss/browse_thread/thread/42fd53c71b2bcc74 Best regards, James Haigh. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/flac-dev/attachments/20120619/a226dda6/attachment.htm
2018 Mar 02
0
[RFC] llvm-mca: a static performance analysis tool
...lication is for (automated) optimization. We’ve experimented with using predicted throughput to schedule instructions. This has resulted in significant wins (see e.g. this PR improving a gemm kernel <https://github.com/google/gemmlowp/pull/91> and this PR improving WebM <https://github.com/webmproject/libwebp/commit/67748b41dbb21a43e88f2b6ddf6117f4338873a3>). We think it could also be used to improve instruction selection to offload some ports (typically un-vectorize some computations on Intel CPUs, where port5 typically becomes saturated for vector-intensive computations).To enable this, it...
2018 Mar 01
9
[RFC] llvm-mca: a static performance analysis tool
Hi all, At Sony we developed an LLVM based performance analysis tool named llvm-mca. We currently use it internally to statically measure the performance of code, and to help triage potential problems with target scheduling models. We decided to post this RFC because we are interested in the feedback from the community, and we also believe that other people might be interested in a tool like