Displaying 5 results from an estimated 5 matches for "theorautils".
2004 Nov 16
0
metadata switches for ffmpeg2theora
Jan,
Here's a hacky patch to add a few commandline options for setting
comment header fields in ffmpeg2theora. It's a bit big because I
virtualized the global info struct in theorautils.c. In retrospect
that probably wasn't necessary, but I think it's cleaner anyway.
I didn't test it because I couldn't compile ffmpeg2theora, but
modulo bugs it should support --artist="foo" --title="bar" and
so on.
FWIW,
-r
-------------- next part -----------...
2009 Jul 24
2
ffmpeg2theora: Undefined symbols?
...usr/local/include -
Iffmpeg src/iso639.c
gcc -o src/subtitles.o -c -DPACKAGE_VERSION=\"0.24\" -DPACKAGE_STRING=
\"ffmpeg2theora-0.24\" -DPACKAGE=\"ffmpeg2theora\" -
D_FILE_OFFSET_BITS=64 -DHAVE_FRAMEHOOK -I. -I/usr/local/include -
Iffmpeg src/subtitles.c
gcc -o src/theorautils.o -c -DPACKAGE_VERSION=\"0.24\" -
DPACKAGE_STRING=\"ffmpeg2theora-0.24\" -DPACKAGE=\"ffmpeg2theora\" -
D_FILE_OFFSET_BITS=64 -DHAVE_FRAMEHOOK -I. -I/usr/local/include -
Iffmpeg src/theorautils.c
gcc -o ffmpeg2theora src/avinfo.o src/ffmpeg2theora.o src/iso639.o src/...
2009 May 29
0
smooth streaming with theora
...uters.
by now things are mostly in place, while we are going through a picky
debugging session.
i'm writing you because we noticed that, altough working, the
streaming of ogg/theora 1.0 is not correctly timed on the player side
when using icecast2 and the ffmpeg2theora encoder (theorautils.c):
using various players as vlc, mplayer, xine and firefox 3.5 the client
plays too fast the incoming frames (without fps synchronisation
basically) until reaching 0 latency with the stream source, then stops
(or crashes even).
further research on the topic has shown that the ogg mux cod...
2008 Jan 22
3
Re: [dyne:bolic] Concerning the (correct) use of Theora in FreeJ
On 1/23/08, jaromil <jaromil@dyne.org> wrote:
> nope. we have a freej specific mailinglist, see http://lists.dyne.org
Ah, so sorry.
> freej is statically including theora-mmx or offering to be dynamically
> compiled to system-wide theora libraries (so the issue is then
> delivered to the distribution)
Most distros should be already using the latest beta, so that should
2004 Nov 20
0
ffmpeg2theora start and end time support
...h"
#include "avformat.h"
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <getopt.h>
#include "theora/theora.h"
#include "vorbis/codec.h"
#include "vorbis/vorbisenc.h"
#include "theorautils.h"
static double rint(double x)
{
if (x < 0.0)
return (double)(int)(x - 0.5);
else
return (double)(int)(x + 0.5);
}
theoraframes_info info;
static int using_stdin = 0;
typedef struct ff2theora{
AVFormatContext *context;
int video_index;
int audio_index;
int deinterlace;...