Displaying 6 results from an estimated 6 matches for "audio_bitrate".
2004 Dec 19
0
[patch] more ffmpeg2theora improvements
...+ ffmpeg2theora.c	(working copy)
@@ -1,3 +1,4 @@
+/* -*- tab-width:4;c-file-style:"cc-mode"; -*- */
 /*
  * ffmpeg2theora.c -- Convert ffmpeg supported a/v files to  Ogg Theora
  * Copyright (C) 2003-2004 <j@v2v.cc>
@@ -54,6 +55,9 @@
 	int disable_audio;
 	float audio_quality;
 	int audio_bitrate;
+	int smoothness;
+	int keyint;
+	int noautosync;
 	int output_width;
 	int output_height;
 	double fps;
@@ -123,6 +127,9 @@
 		this->video_bitrate=0;
 		this->audio_quality=0.297;// audio quality 3
 		this->audio_bitrate=0;
+		this->smoothness=0;
+		this->keyint=64;
+		this->noa...
2009 Jun 21
0
Sources can't connect to my server
...(0)
> [2009-06-17  17:50:09] DBUG stats/stats.c new node total_bytes_sent (0)
> [2009-06-17  17:50:09] DBUG stats/stats.c new node audio_samplerate 
> (44100)
> [2009-06-17  17:50:09] DBUG stats/stats.c new node audio_channels (2)
> [2009-06-17  17:50:09] DBUG stats/stats.c new node audio_bitrate (64001)
> [2009-06-17  17:50:09] DBUG stats/stats.c new node ice-bitrate (64)
> [2009-06-17  17:50:10] DBUG stats/stats.c new node artist (Quant)
> [2009-06-17  17:50:10] DBUG stats/stats.c new node title (Second Life)
> [2009-06-17  17:50:10] DBUG stats/stats.c new node subtype (Vorbis...
2008 Feb 01
1
can not stream the video using eztream
...ct Ratio: nan/1
  Resize: 368x256
      0:02:23.44 audio: 42kbps video: 100kbps, time remaining: 00:00:54
server	Icecast 2.3.1
server_start	Thu, 31 Jan 2008 18:07:42 -0500
source_client_connections	1
Mount Point : (/different.ogg)
List Clients | Move MountPoints | Update Metadata | Kill Source
audio_bitrate	48000
audio_channels	2
audio_info	bitrate=128;channels=2;samplerate=44100
audio_samplerate	44100
bitrate	128
channels	2
genre	RockNRoll
ice-bitrate	48
listener_peak	3
listeners	3
listenurl	http://localhost:8000/different.ogg
max_listeners	unlimited
public	1
samplerate	44100
server_description	This...
2009 Jun 18
4
Sources can't connect to my server
I have IceCast 2.3.1 running on Window XP SP3 as a windows service.
My computer is behind a d-link router, and the router is configured to 
pass through to port 8000 on my computer.
On the same computer I am running WinAmp with an oddcast dsp and 
streaming work fine, people beyond my router can listen no problem.
I also have a laptop running Windows Vista SP2 with WinAmp and a Spacial 
dsp,
2004 Nov 20
0
ffmpeg2theora start and end time support - patch
...42,7 +146,7 @@
 	AVCodec *acodec = NULL;
 	AVCodec *vcodec = NULL;
 	float frame_aspect;
-	
+	int frame_number=0;
 	double fps = 0.0;
 
 	for (i = 0; i < this->context->nb_streams; i++){
@@ -426,9 +430,23 @@
 		info.vorbis_quality = this->audio_quality;
 		info.vorbis_bitrate = this->audio_bitrate;
 		theoraframes_init (&info);
-	
+		/*seek to start time*/	
+		av_seek_frame( this->context, -1, (int64_t)AV_TIME_BASE*this->start_time, 1);
+		/*check for end time and caclulate number of frames to encode*/
+		int no_frames = fps*(this->end_time - this->start_time);
+...
2004 Nov 16
0
metadata switches for ffmpeg2theora
...mpeg2theora.c
===================================================================
--- ffmpeg2theora.c	(revision 8208)
+++ ffmpeg2theora.c	(working copy)
@@ -425,7 +425,7 @@
 		info.sample_rate = this->sample_rate;
 		info.vorbis_quality = this->audio_quality;
 		info.vorbis_bitrate = this->audio_bitrate;
-		theoraframes_init ();
+		theoraframes_init (&info);
 	
 		/* main decoding loop */
 		do{
@@ -491,7 +491,7 @@
 					}	
 					first=0;
 					//now output_resized
-					if(theoraframes_add_video(output_resized->data[0],
+					if(theoraframes_add_video(&info, output_resized->data[0],...