Displaying 7 results from an estimated 7 matches for "theora_comment_init".
2004 Nov 16
0
metadata switches for ffmpeg2theora
...1, info.og.header_len, info.outfile);
- fwrite (info.og.body, 1, info.og.body_len, info.outfile);
+ fwrite (info->og.header, 1, info->og.header_len, info->outfile);
+ fwrite (info->og.body, 1, info->og.body_len, info->outfile);
/* create the remaining theora headers */
- theora_comment_init (&info.tc);
- theora_comment_add_tag (&info.tc, "ENCODER",PACKAGE_STRING);
- theora_encode_comment (&info.tc, &info.op);
- ogg_stream_packetin (&info.to, &info.op);
- theora_encode_tables (&info.td, &info.op);
- ogg_stream_packetin (&info.to, &...
2009 May 12
2
compile error of libtheora example
...ain':
player_example.c:(.text+0xe17): undefined reference to `ogg_sync_init'
player_example.c:(.text+0xe23): undefined reference to `vorbis_info_init'
player_example.c:(.text+0xe2f): undefined reference to `vorbis_comment_init'
player_example.c:(.text+0xe3b): undefined reference to `theora_comment_init'
player_example.c:(.text+0xe47): undefined reference to `theora_info_init'
player_example.c:(.text+0xe86): undefined reference to `ogg_page_bos'
player_example.c:(.text+0xeb1): undefined reference to `ogg_page_serialno'
player_example.c:(.text+0xec3): undefined reference to `ogg_str...
2011 Aug 10
1
Ripping theora stream
Hi,
I'm new to this mailing list. I'm trying to save a theora stream into an OGG
file (or something else). I've the theora packets received from a VoIp
application (over RTP). I'm able to convert a single frame to a jpeg image
but I've no idea about how to write video file.
Maybe this is not the right place to answer this question but I'm loosing my
mind reading specs
2006 Aug 06
0
Newbie: How to rewind a videostream (long)
...if (! videoStream.good())
throw "Error: VideoStreamTheora::initMovie: bad file.";
videoStream.seekg (0, std::ios::end);
movieLengthBytes = videoStream.tellg();
videoStream.seekg (0, std::ios::beg);
ogg_sync_init (&oggSyncState);
theora_comment_init (&theoraComment);
theora_info_init (&theoraInfo);
// Fetch from the ogg-stream until we have the INITIAL PAGES of the
theora stream
for (bool doneScanningHeaders=false; ! doneScanningHeaders; )
{
if (buffer_data ()==0)
throw &quo...
2005 Oct 05
1
Simple encodig sample...
...if( ogg_stream_pageout( &to, &og ) != 1 )
{
fprintf( stderr, "Internal Ogg library error.\n" );
exit( 1 );
}
fwrite( og.header, 1, og.header_len, outfile );
fwrite( og.body, 1, og.body_len, outfile );
/* create the remaining theora headers */
theora_comment_init( &tc );
theora_encode_comment( &tc, &op );
ogg_stream_packetin( &to, &op );
theora_encode_tables( &td, &op );
ogg_stream_packetin( &to, &op );
/* Flush the rest of our headers. This ensures the actual data in each
stream
will start on a new p...
2006 Oct 06
0
V4L + Theora small app...
...rintf( stderr, "### Internal Ogg library error \n" );
iRet = -2;
goto OGG_OpenClip_quit;
}
fwrite( tOGGpage.header, 1, tOGGpage.header_len, pfOGGclip );
fwrite( tOGGpage.body, 1, tOGGpage.body_len, pfOGGclip );
/* create the remaining theora headers */
theora_comment_init( &tTheoraComment );
theora_encode_comment( &tTheoraComment, &tOGGpacket );
ogg_stream_packetin( &tOGGstreamState, &tOGGpacket );
_ogg_free( tOGGpacket.packet ); /* !!! correct ? small mem leak without this !!! */
theora_encode_tables( &tTheoraState, &...
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: