search for: format_ogg_attach_header

Displaying 7 results from an estimated 7 matches for "format_ogg_attach_header".

2004 Dec 15
2
Fallback trouble with icecast 2.1kh
...ket [2004-12-15 23:56:28] DBUG format-vorbis/get_buffer_finished flushing page [2004-12-15 23:56:28] DBUG format-ogg/format_ogg_free_headers releasing header pages [2004-12-15 23:56:28] DBUG format-vorbis/process_vorbis_headers Adding the 3 header packets [2004-12-15 23:56:28] DBUG format-ogg/format_ogg_attach_header attaching BOS page [2004-12-15 23:56:28] DBUG format-ogg/format_ogg_attach_header attaching header page [2004-12-15 23:56:28] DBUG format-ogg/format_ogg_free_headers releasing header pages [2004-12-15 23:56:28] DBUG format-ogg/free_ogg_codecs freeing codecs [2004-12-15 23:56:28] DBUG format-...
2007 Mar 15
2
Logging album info for ogg-vorbis
Hi, i just joined the list. I was wondering if anyone would be interested in a change to icecast that logs album info as well as ARTST and TRACK. I have made the changes to the source code and it's working fine. If there is any interest, I could look into making it an addition to the code. Let me know. thanks, -- Aaron -------------- next part -------------- An HTML attachment was
2005 Feb 21
2
theora streaming problem...
...2-21 21:48:53] DBUG format-vorbis/initial_vorbis_page checking for vorbis codec [2005-02-21 21:48:53] DBUG format-theora/initial_theora_page checking for theora codec [2005-02-21 21:48:53] INFO format-theora/initial_theora_page seen initial theora header [2005-02-21 21:48:53] DBUG format-ogg/format_ogg_attach_header attaching BOS page [2005-02-21 21:48:53] DBUG format-vorbis/initial_vorbis_page checking for vorbis codec [2005-02-21 21:48:53] INFO format-vorbis/initial_vorbis_page seen initial vorbis header [2005-02-21 21:48:53] DBUG format-ogg/format_ogg_attach_header attaching header page [2005-02-21...
2007 Mar 26
0
Logging album info for ogg-vorbis
...src/format_vorbis.c 2007-03-26 23:27:23.000000000 +0200 @@ -511,6 +511,8 @@ vorbis_codec_t *source_vorbis = codec->specific; char *comment; + int i; + if (ogg_stream_pagein (&codec->os, page) < 0) { ogg_info->error = 1; @@ -565,6 +567,21 @@ format_ogg_attach_header (ogg_info, page); codec->process_page = process_vorbis_passthru_page; } + + //free previous comment fields + for(i=0; i < ogg_info->metadata_count; ++i) + free(ogg_info->metadata[i]); + free(ogg_info->metadata); + + ogg_info->metadata = calloc(so...
2005 Nov 11
0
[PATCH] icecast video preview 2
...= "Theora"; +#ifdef WITH_PNG + theora_info *ti = &theora_codec->ti; + init_video_preview(ogg_info->mount, ti->width, ti->height, ti -> offset_x, ti -> offset_y , &theora_codec -> video_preview); + theora_codec -> frame_count = -1; +#endif + format_ogg_attach_header (ogg_info, page); ogg_info->codec_sync = codec; return codec; Index: src/format_theora.h =================================================================== --- src/format_theora.h (revisione 10365) +++ src/format_theora.h (copia locale) @@ -14,6 +14,7 @@ #ifndef __FORMAT_THEORA_H #d...
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
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