Displaying 6 results from an estimated 6 matches for "frame_y".
Did you mean:
frame_
2005 Oct 05
1
Simple encodig sample...
...include <unistd.h>
#include "theora/theora.h"
#define STREAM_EOP 1 // End-of-page
#define STREAM_EOD 2 // End-of-data
#define STREAM_EOS 3 // End-of-stream
#define SPIN "|/-\\"
int video_x = 0;
int video_y = 0;
int frame_x = 352;
int frame_y = 288;
int frame_x_offset = 0;
int frame_y_offset = 0;
int video_hzn = 25;
int video_hzd = 1;
int video_an = 1;
int video_ad = 1;
int video_r = 320000;
int video_q = 16;
int frame_counter = 250;
signed char *yuvframe;
int fetch_video_page( ogg_page *videopa...
2004 Sep 25
6
Directshow filters 0.64.7878
Updated again... theora works and seeks properly (not to keyframe) in WMP 9
and 10.
You can encode from a bunch of onew input types like RGB32, RGB24, IYUV etc.
And fixed a bug that was stopping the filters being used in a activeX
control in an IE browser.
www.illiminable.com/ogg/
Enjoy,
Zen.
2004 Sep 25
6
Directshow filters 0.64.7878
Updated again... theora works and seeks properly (not to keyframe) in WMP 9
and 10.
You can encode from a bunch of onew input types like RGB32, RGB24, IYUV etc.
And fixed a bug that was stopping the filters being used in a activeX
control in an IE browser.
www.illiminable.com/ogg/
Enjoy,
Zen.
2004 Sep 25
6
Directshow filters 0.64.7878
Updated again... theora works and seeks properly (not to keyframe) in WMP 9
and 10.
You can encode from a bunch of onew input types like RGB32, RGB24, IYUV etc.
And fixed a bug that was stopping the filters being used in a activeX
control in an IE browser.
www.illiminable.com/ogg/
Enjoy,
Zen.
2004 Sep 25
6
Directshow filters 0.64.7878
Updated again... theora works and seeks properly (not to keyframe) in WMP 9
and 10.
You can encode from a bunch of onew input types like RGB32, RGB24, IYUV etc.
And fixed a bug that was stopping the filters being used in a activeX
control in an IE browser.
www.illiminable.com/ogg/
Enjoy,
Zen.
2005 Sep 07
1
encoder settings
...buffer the stream and here is the problem...
Right now the encoder works with following settings:
bitrate = 80
video_r = 80;
videostream->ti.width = video_x;
videostream->ti.height = video_y;
videostream->ti.frame_width = frame_x;
videostream->ti.frame_height = frame_y;
videostream->ti.offset_x = frame_x_offset;
videostream->ti.offset_y = frame_y_offset;
videostream->ti.fps_numerator = refreshrate * 1000000;
videostream->ti.fps_denominator = 10 * 100000;
videostream->ti.aspect_numerator = 0;
videostream->ti.aspect_denom...