You are not logged in.

#1 2009-09-25 23:44:06

ataraxia
Member
From: Pittsburgh
Registered: 2007-05-06
Posts: 1,553

Theora 1.1 is out!

This should make Theora actually worth using, and that's great news for those of us who want to see Flash videos replaced with the <video> tag.
http://www.theora.org/news/#libtheora-1.1.0

Offline

#2 2009-10-03 17:07:32

speedboy
Member
Registered: 2008-05-06
Posts: 27

Re: Theora 1.1 is out!

I wonder when we are going to see it in the repos.

Offline

#3 2009-10-03 22:31:32

Themaister
Member
From: Trondheim, Norway
Registered: 2008-07-21
Posts: 652
Website

Re: Theora 1.1 is out!

Been testing it a bit. Quality per bitrate, it looks like it's still light years behind x264 :< Mind though, I don't know all the cool features of libtheora that might improve visual quality. Also, it's a let-down that is doesn't support multi-threaded encoding yet, as its performance is really poor compared to fully threaded 64-bit encoding of x264 on Core i7 tongue

Offline

#4 2009-10-03 23:01:20

MP2E
Member
Registered: 2009-09-05
Posts: 115

Re: Theora 1.1 is out!

Themaister wrote:

Been testing it a bit. Quality per bitrate, it looks like it's still light years behind x264 :< Mind though, I don't know all the cool features of libtheora that might improve visual quality. Also, it's a let-down that is doesn't support multi-threaded encoding yet, as its performance is really poor compared to fully threaded 64-bit encoding of x264 on Core i7 tongue

I'm just going to stick with x264 myself, I love that particular codec. Hasn't let me down yet! smile


17:23 < ConSiGno> yeah baby I release the source code with your mom every night
17:24 < ConSiGno> you could call them nightly builds if you know what I mean

Offline

#5 2009-10-03 23:12:36

Themaister
Member
From: Trondheim, Norway
Registered: 2008-07-21
Posts: 652
Website

Re: Theora 1.1 is out!

Ye, x264 is this the great king of H.264 encoding, and encoding overall. I really hope that theora will be a real competitor in the future though. For some things, I guess it is already. I'll try to embed the <video> tag in some of my web pages for shits and giggles though big_smile

EDIT: Been trying some low-bitrate theora anime (web streaming big_smile). It's surprisingly good D: Very close to x264.

Last edited by Themaister (2009-10-03 23:40:28)

Offline

#6 2009-10-03 23:14:44

skottish
Forum Fellow
From: Here
Registered: 2006-06-16
Posts: 7,942

Re: Theora 1.1 is out!

ataraxia wrote:

This should make Theora actually worth using, and that's great news for those of us who want to see Flash videos replaced with the <video> tag.
http://www.theora.org/news/#libtheora-1.1.0

Not to bump this thread too much, but Chrome already has a FFmpeg plug-in to do this. So instead of having just one codec to work with, you get the the entire FFmpeg back end including Theora if you want it. I don't use Chrome, but now that it exists...

Offline

#7 2009-10-04 03:17:33

some-guy94
Member
Registered: 2009-08-15
Posts: 360

Re: Theora 1.1 is out!

skottish wrote:

Not to bump this thread too much, but Chrome already has a FFmpeg plug-in to do this. So instead of having just one codec to work with, you get the the entire FFmpeg back end including Theora if you want it. I don't use Chrome, but now that it exists...

It's still better if theora gains popularity for web videos, it's good enough (for real hd, we need to wait for dirac), and can be supported out of the box on any browser.

The only problem is that there is no hardware-accelerated theora decoding yet...

Last edited by some-guy94 (2009-10-04 03:17:54)

Offline

#8 2009-10-04 04:27:37

skottish
Forum Fellow
From: Here
Registered: 2006-06-16
Posts: 7,942

Re: Theora 1.1 is out!

some-guy94 wrote:
skottish wrote:

Not to bump this thread too much, but Chrome already has a FFmpeg plug-in to do this. So instead of having just one codec to work with, you get the the entire FFmpeg back end including Theora if you want it. I don't use Chrome, but now that it exists...

It's still better if theora gains popularity for web videos, it's good enough (for real hd, we need to wait for dirac), and can be supported out of the box on any browser.

The only problem is that there is no hardware-accelerated theora decoding yet...

Theora is never going to be the de facto standard for the web for a bunch of different reasons. And I doubt that dirac is going to gain much traction any time in the near future (or ever)*. There's a ton of weight behind H264/AAC right now, and currently it's the best lossy compression algorithm in wide spread use. The argument, as you pointed out, that theora is good enough for basic web stuff is true, but it can't do anything particularly unique.


* An interesting read on dirac/schroedinger from Dark Shikari (x264 and FFmpeg developer) can be found here:

http://forum.doom9.org/showthread.php?t … hroedinger

Offline

#9 2009-10-04 11:19:25

wantilles
Member
From: Athens - Greece
Registered: 2007-03-29
Posts: 327

Re: Theora 1.1 is out!

speedboy wrote:

I wonder when we are going to see it in the repos.

You can get - along with other interesting stuff - in our adslgr64 repo.

I packaged it yesterday.

Here is our abs tree to see if anything else might interest you:

http://gitorious.org/arch-linux-greece/ … s/adslgr64

And here is our commit log:

http://gitorious.org/arch-linux-greece/ … its/master

Last edited by wantilles (2009-10-04 11:41:09)

Offline

#10 2009-10-04 18:58:52

skottish
Forum Fellow
From: Here
Registered: 2006-06-16
Posts: 7,942

Re: Theora 1.1 is out!

A slight modification of the official PKGBUILD works too:

pkgname=libtheora
pkgver=1.1.1
pkgrel=1
pkgdesc="An open video codec developed by the Xiph.org"
arch=('i686' 'x86_64')
depends=('libogg')
makedepends=('libvorbis')
url=http://www.xiph.org
license=('custom')
options=(!libtool)
source=(http://downloads.xiph.org/releases/theora/libtheora-${pkgver}.tar.bz2)
md5sums=('292ab65cedd5021d6b7ddd117e07cd8e')

build() {
  cd "${srcdir}/libtheora-${pkgver}"
  ./configure --prefix=/usr --enable-shared --disable-static || return 1
  make || return 1
  make DESTDIR="${pkgdir}" install || return 1
  
  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
  install -m644 LICENSE COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" || return 1
}

Offline

#11 2009-10-04 20:39:09

Gen2ly
Member
From: Sevierville, TN
Registered: 2009-03-06
Posts: 1,529
Website

Re: Theora 1.1 is out!

I believe that videos will first have to be encoded in 1.1 for this to work (correct me if I'm wrong).  And Firefox won't be able to support it yet.  See this link (bottom of comments).  Just FYI. big_smile


Setting Up a Scripting Environment | Proud donor to wikipedia - link

Offline

#12 2009-10-04 20:46:54

skottish
Forum Fellow
From: Here
Registered: 2006-06-16
Posts: 7,942

Re: Theora 1.1 is out!

Gen2ly wrote:

I believe that videos will first have to be encoded in 1.1 for this to work (correct me if I'm wrong).  And Firefox won't be able to support it yet.  See this link (bottom of comments).  Just FYI. big_smile

Interesting. Both of the videos (1.0 and 1.1) linked to in the main article work fine for me with the FF from the repos. I guess that I'm missing something.

--EDIT--

Yeah, I'm missing something. Between the time that I posted the PKGBUILD and tested this, I removed libtheora. In fact, I don't have any codec from Xiph installed on this machine. I'm not sure exactly how I'm getting video playback, but I am.

Offline

Board footer

Powered by FluxBB