Displaying 20 results from an estimated 1000 matches similar to: "Please help : Trying to fool Theora into doing what I want"
2007 May 25
2
Cleaning app
Hello all,
When I'm doing something like:
yuv_buffer yuv;
theora_decode_YUVout(&td,&yuv);
I'm guessing a bunch of stuff gets newed/malloced for yuv.y, yuv.u, and
yuv.u.
Who is responsible for deleting/freeing that stuff?
Cheers,
Kos.
2007 Apr 12
1
Seek problem 2 - reinitialization of the decoder
Hi people,
Next issue at hand here is after I have done a seek in a theora file. At this
point, I have to reinitialize the decoder so the viewing can continue. Again,
I have code that works most of the time, but, well...
Just after the last file position seek, this code is run:
while ((result = ogg_sync_pageout(&sync, &page)) == 0)
bufferData();
while
2009 Aug 13
2
Getting only frame deltas?
Hi, first post on this list. I run a small game development company
specializing in casual Windows/Mac games.
We've been using Theora for video playback inside our engine for a while,
but we always run into performance issues. I've tracked them down to two
parts : YUV to RGB decoding (done via software) and uploading the new pixel
data to the video card as a texture.
For the YUV to RGB
2005 Nov 11
0
[PATCH] icecast video preview 2
hem here it is the patch. ;)
bye
kysucix
-------------- next part --------------
Index: conf/icecast.xml.in
===================================================================
--- conf/icecast.xml.in (revisione 10365)
+++ conf/icecast.xml.in (copia locale)
@@ -62,6 +62,7 @@
<port>8001</port>
</listen-socket>
-->
+
2006 Jul 24
2
[theora in hardware] Contents of YUV_BUFFER_ENTRY
Hi everyone, it's my first e-mail to this list (my classmates from college
have sent a few though), so i'ld like first to greet everyone and
congratulate all the people responsible for all the work with this theora
project.
So, to my question:
As you probably know, we are working on an implementation of the theora
codec on hardware. I'm currently responsible for getting the function
2006 Dec 08
1
Skipping Frames
Hi everyone!
I'm currently trying to use the theora decoder on PPC.
Everything is working perfect now, but I have a problem: I need to skip the
decoding of some frames (drop frames) when the device is not powerful enough
to decode them all in real time (which in PPC is a frequent issue).
Right now, I'm skipping the call to theora_decode_YUVout and the yuv to
rgb procedure. That gives me
2005 Feb 09
1
Trying to do windows encoding dll
Hi everybody, me again.
I'm trying to write my own VFW-like dll... It doesn't need to do much.
1.) compress a single frame and give it back to the host application
2.) host applications sends the frame
3.) client application receives frame
4.) client application tells the dll to decompress the data
So if I try to do this, something is going wrong...
Perhaps someone could have a look at my
2012 Oct 10
5
Theora integration question
Hello, I am programmer working on a product which integrates Theora. I have
a question regarding the memory use on some of the internals of Theora. Is
this the right forum for this question, and if not, does anyone know where
an appropriate place to ask is?
Thanks
Sam
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2009 May 12
2
compile error of libtheora example
hi all:
i downloaded libtheora1.0.tar.gz from xiph.org, and when i compile it,
such error message popped.
i tried to run player_example.c under /libtheora_1.0/examples/.
error message:
ivysummer at ivysummer-desktop:~/??/libtheora-1.0/examples$ gcc -o player
player_example.c
/tmp/ccpyle3c.o: In function `buffer_data':
player_example.c:(.text+0x15): undefined reference to
2005 Nov 11
2
[PATCH] icecast video preview 2
Updated version of video preview covering frame writing every 3 keyframe
and a xsl typo.
Best regards :)
kysucix
--
Make things as simple as possible, but no simpler. - Albert Einstein
2006 Aug 06
0
Newbie: How to rewind a videostream (long)
Hello, I'm new to this list, and pretty much also to the codec universe.
In a computer game I'm working on, there is an 3D TV-screen onto which I
project the frames of a movie. The movie is of course stored as theora, no
audio as it's not needed yet. I have it working so far, extracting a frame
and uploading it to the graphics card when the scene is drawn. The example
file
2005 Nov 11
1
[PATCH] icecast video preview
Hi. Here it is my patch to put a video preview of a theora stream in
status.xsl.
I just added a:
<video-preview>1</video-preview>
parameters in icecast.xml.in that control the previewing function.
It encodes a png in $webroot/$mountname.tmp and then move it to
$webroot/$mountname.png
As for now it saves a frame every theora keyframe, which is probably
too heavy for the server but
2004 Dec 08
3
yuv2rgb
hi all,
i'm trying to code a tool to get some images from a ogg/theora file ....
so basically i need to get a frame and convert to rgb ... and here is my
question (sorry, i'm newbe here) ...
how to convert a yuv_buffer to a rgb matrix ?
i tryied diferent ways but my mistakes are bassically cause i don't
understant how yuv_buffer structure works ...
anybody can help? thanks a lot.
2006 Aug 20
1
Simple RGB->YUV Stuff...
I've spent the weekend or so trying to get my head around Theora and I'm
just not having any luck. First of all, I really don't have any interest
in immersing myself in video encoding--I just have one simple thing I'd
like to do--so I haven't spent any time reading about the theory or
specs or anything like that.
I'm attempting to write a "render-to-theora"
2002 Aug 05
3
Cross-Compiling VP3 lib on Linux
Hi,
I have been working with VP3 for some time now. Dan Miller from
On2 just told me about this list.
A few months ago, I managed to get On2's VP3 source snapshot to
compile under Linux, a feat that many have apparently attempted and
quickly abandoned. I compiled a small console app and the results of the
experiment are explained here:
2008 Oct 07
3
Theora on iPhone
I posted a while back "complaining" about lack of a theora player on the
iPhone. Porting the code for libtheora (and libogg/libvorbis) was
(relatively) painless, and appears to be working. I'm up against a tougher
challenge now... rendering the video!
I tried using the brand-new SOC-funded SDL port to iphone to get the
"player_example.c" code up and running, but ran into
2008 Feb 25
3
More examples?
Hello,
I want to make a program to extract frame from a theora movie as
images. I tried with the decoding example located at theora web site
(dump_video.c. I use it to extract a frame as yuv image but when I try
to convert it to ppm with yuvtoppm program i obtain a strange image
( see http://poux.be/tmp/file.ppm ). I think it's a problem with the
byte order for yuv, but don't I don't
2008 Feb 16
3
Gray scale video output from theora
hi all
I guess that *Theora* will convert the input color space (RGB or CMYK or
any) into YUV before it process and encode. (that means theora can operate
on several color space, but it get convert into YUV before process)
Is that true...?
I want to get a gray scale, encoded video output from the *Theora* encoder
while the input video is getting from a web cam (color input and gray scale
2004 Jun 04
4
YUV question
On Fri, 4 Jun 2004, Makc wrote:
> Here's what you can find in the net on YUV scheme:
Hmm? What prompted this?
> The statement I care to make here, is simply that there ain't neither
> such thing as "luminance", which details "the eye is more sensitive to",
"ain't neither"? Double negative, so I take your statement to mean
that there *is* such
2005 Jun 30
5
will there be theora_decode_RGBout() ?
hi folks!
i would like to know whether there will be some function to decode to some plain 24 bit RGB buffer in the future.
i think this feature is sometimes important, especially when using different surface layers, or when modifying
the buffer in realtime.
if this feature will definitely not be, could someone tell me how i can convert to some RGB buffer in realtime?
i already tried different