search for: keyframes

Displaying 20 results from an estimated 191 matches for "keyframes".

Did you mean: keyframe
2010 Apr 08
0
Encoder keyframe frequency limited to >32
...recording with Keyframe Freq <= 32. Keyframe Freq >32 works perfectly. The incoming video is at 5 fps. Although I can't find explicit documentation I presume that the Keyframe Frequency is actually the keyframe interval measured in frames (what h.264 would call GOP.) I need frequent keyframes for input to a video editor although the Changelog would suggest that perhaps this is not necessary (seeking to non-keyframes is possible) The Theora filter is Version 0.82.16930 **** Theora settings **** Quality Mode = False * Quality = 10 * Target Bitrate...
2004 Sep 27
1
ogg and keyframes
Hi, When doing a live ogg+theora stream on our server we ran into the following problem: When a client connects we send out the theora header pages followed by the actual live stream pages. The problem is that the first ogg data page does not have the right page number (2), which causes libogg to not want to decode the first _packet_ of that page. Since that first packet happens to contain the
2005 Feb 17
1
Fix a bug that causes the encoder to spend way to many bits on keyframes
Here is a fix that prevents the encoder from spending too many bits on keyframes. The main problem is that the old code computes the target keyframe bitrate incorrectly. This causes the code that computes the Q for the frame to think that it has tons of bits to spend. It selects a high Q value for the keyframe. Since so many bits were spend on the keyframe the the inter-frames...
2008 Nov 11
5
further debugging of my ogg/theora decoder
Hi, I am continuing to try to debug my ogg/theora decoder. The issue seems to be that not enough packets are being pulled from the bitstream, here is some sample output from my player with some debugging comments put in: (playback began at first frame, this is from the middle of the clip) get page at 1765027 got packet frame++, skip is 0 frame decoded page processed, kframe=414 : offs=442 get
2009 Aug 24
1
Keyframes
Hi all, First of all a big thank you for your work. I would like to know what is (could be) the best (optimal in a psnr and/or subjectivity sense) maximum distance between keyframes or is theora using a good heuristic change scene detection mecanism? Does it really matter to theora as with mpeg4 part2/10? Thank you and keep up the good work -- Josh
2010 Jun 04
2
OGGZ Seeking in Theora
Dear all I'm aware that there have been several discussions about the seeking issue and I'm sorry to bring this up again. To solve the problem with Inter-Frame garbage, a seek to the previous keyframe has to be made. The keyframe number should be extracted from the granulepos of the frame where we want to seek to. I hope I understood the theory - unfortunately a few questions have
2010 Mar 25
2
Questions about encoder parameters.
...rs above means 10 frames per second, Is that right? info.aspect_denominator = 0; info.aspect_numerator = 0; Here I use the default, and hope that is OK. info.keyframe_granule_shift = 10; I'm uncertain on what the intention of the parameter is. It seems like it is the frequency keyframes are sent in, so the parameter above would mean that every 10th frame is a keyframe, but I'm not sure that is right, and would like this parameter to be explained, as it was not obvious for me by reading the documentation. Hope somebody would help me with this. -Gisle
2003 Oct 30
1
spare bits in the theora keyframe header
...ame header. There's a keyframe type bit which is always DCT_KEY_FRAME aka '0' and two spare bits. You took out a lot of similar extra bits in the VP3 code. Do you remember anything about the motivation for leaving this one in? Given the constant, were there plans for wavelet-encoded keyframes? Anyone else on the list, feel free to speak up. :) -r --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'theora-dev-request@xiph.org' containing only the word 'unsubscribe'...
2002 Sep 13
6
Keyframe seeking in Ogg and spec
...eeking operations are a function of a higher-level layer (with knowledge of the media types and codec in use) making intelligent use of this lowest Ogg abstraction. The Ogg stream abstraction need deal with nothing more complex than 'find this page'. The various granulepos strategies for keyframes concern this last point. The basic issue with video from which complexity arises is that frames often depend on previous and possibly future frames. This happens in a larger, general category of codecs whose streams may not begin decode from just any packet as well as packets that may not represe...
2008 Jun 18
2
Simple decoder (keyframe only) implementation ?
Hello everybody ! I am working on a php class to enable, on the server-side, to extract useful data from Ogg theora videos. http://opensource.grisambre.net/ogg . I need to have it extract a thumbnail picture from a video (much like dailymotion or youtube). Right now, I am doing it using the ffmpeg-php extension (for picture extraction only), but the problem is that this module is available on
2003 Feb 27
2
Theora streaming
> From: Jay Sprenkle [mailto:cupycake_jay@yahoo.com] > I thought > you had to back up to the previous complete frame, > then apply the differences in the following frames > to generate a new complete frame where the splice > was to happen. Are you going to handle editing to > arbitrary frames? I believe you have to do something > analogous in theora/ogg. yup. > ---
2010 Apr 09
1
Theora encoder directshow Filter configuration
Hi, I'am using the Xiph Theora Encoder directshow Filter in a csharp application. It works fine but I would like to modify the configuration, like the quality settings. I would like to know if there is a possibility to configure it programmatically without using the propertyPage dialog. Thanks a lot for your help Mathieu -------------- next part -------------- An HTML attachment was
2005 Aug 06
0
[Fwd: Re: Force keyframe creation]
(I think Timothy intended for this to go to the list; my apologies if it wasn't.) -------- Original Message -------- Subject: Re: [Theora-dev] Force keyframe creation Date: Sat, 06 Aug 2005 00:06:32 -0400 From: Timothy B. Terriberry <tterribe@vt.edu> To: David Barrett <dbarrett@quinthar.com> References: <42F4186C.1050605@quinthar.com> David Barrett wrote: > Is there any
2008 Mar 15
1
[PATCH] thusnelda keyframe only speedup
Hi all, Attached is a trivial patch that speeds up encoding for key frame only streams. It skips the motion vector search which is not needed when there are never going to be any delta frames. It was made against thusnelda SVN revision 14589. Tested on Fedora 8 x64_64. -Phil -------------- next part -------------- A non-text attachment was scrubbed... Name:
2008 Nov 19
1
Question about updated block list history in the encoder
I'm new to the list so please excuse me if this has already been rehashed before. There seems to be something very odd about how the PP_INSTANCE::PrevFragments array is handled during keyframes. I'm not a video codec expert so I'm not entirely sure what the reason for keeping a history of blocks updated in the last few previous interframes and adding them to the blocks to be updated in the current interframe is, but I'm sure there's a good one (perhaps it's to furt...
2010 Apr 06
1
ITheoraEncodeSettings C# interop
My apologies if this is considered somewhat off-topic but I presume that this information may be may also be of use to others using these filters. Is there someone with a better understanding of COM than I have who can tell me where I'm going wrong with the following C# interface definition? I can set and recover a quality setting using this interface but not the isUsingQualityMode flag. Not
2007 Aug 19
2
Fwd: [show-in-a-box] Re: Ogg
...edia@gmail.com> Date: Aug 19, 2007 10:13 AM Subject: [show-in-a-box] Re: Ogg To: show-in-a-box@googlegroups.com A question I have if you would know. OGG from what I know comes from an early version of the Flash codec that ON2 is building. The FLV file structure does not have frames, but only keyframes, to optimize for streaming -- that's why FLVs can't be edited in Premiere or Final Cut. Does OGG have a similar limitation of not being fame editable and only having keyframes? -- Enric
2010 Jan 05
3
Live Streams
Hello, i am member of red5 project. I am studying ways to integrate your codec into red5 and in a near future inside Flash Player. I want to figure some things about Theora codec. -> Is theora proper for live streams (i.e live transcondig webcam)? What is latency for encoding process? -> Is the format tolerant to lost frames? Thanks for the moment.
2003 Jun 11
5
question about ogg mapping
Question: is it permissible to put more than one frame packet into a page? At 30 fps, Ogg page overhead is on the order of 8 - 10 kbits/sec. At low datarates, this is going to be unacceptable. If I shove a few frames into a page, how does this affect the granulepos stuff? ___ Dan Miller (++,) Founder, On2 Technologies <p>--- >8 ---- List archives: http://www.xiph.org/archives/
2005 Mar 02
1
Patch that fixes distortions during static scenes
...e buffer that was output for the last frame that had a non-zero MotionScore. This is obviously incorrect behavior. I've just moved the UpdateFrame() out of the (MotionScore > 0) conditional block. I've also included my change that prevents the encoder from spending WAY to many bits on keyframes. This helps prevent the artifact where the video suddenly gets very clear when keyframes occur but gets progressively blurry for interframes. This change helps minimize some of the drastic Q changes that cause this artifact. Aaron Index: encoder_toplevel.c =======================================...