Displaying 20 results from an estimated 2000 matches similar to: "How can you synchronise audio with an already-playing stream?"
2001 Mar 12
1
ov_pcm_seek
How do I seek back to the beginning of a stream using ov_pcm_seek()?
ov_pcm_seek(0) doesn't seem to do anything, though ov_pcm_tell()
returns 0 right after opening the stream.
I'm now using ov_pcm_seek(1) which seems to work, but I'm not sure
if that's really right. Are PCM offsets meant to be 0 or 1 based? Is
this a bug?
Frank
--
Frank Heckenbach, frank@g-n-u.de
2004 Jun 06
2
vorbisfile timestamp oddity
I'm seeing some inconsistency in returned timestamps using vorbisfile.
I open a file, read some data (grabbing timestamps with ov_pcm_tell),
then seek back with ov_pcm_seek(vf, 0) and read it again.
The seek lands back on 0, but on the second read through, there's a gap
in the timestamps: they jumps up by 2112 frames. This causes my vorbisfile
code to insert silence to maintain sync (as
2005 Oct 09
1
ov_read_float vs. ov_read
Hello,
Am I missing something?
float** pcm_channels;
int bitstream;
int where = ov_pcm_tell(&vf);
-> The Result is "0";
ov_read_float(&vf, &pcm_channels, 1, &bitstream);
-> pcm_channels[0][0] is "0.000338580"
ov_pcm_seek(&vf, 0);
char* buffer = new char[2];
ov_read(&vf, buffer, sizeof(buffer), 0, 2, 1, &bitstream);
short temp =
2006 Jan 17
1
How to loop a Vobis sound ?
The sound file is played correctly for the first time, then when rewind to the initial position.
then copy PCM to buffer, the OpenAL report an error.
It seems like the OpenAL doesn't recognize the PCM data.
The OpenAL error number :
AL_INVALID_VALUE 0xA003
void Buffer::PCMData (ALuint id, ALenum eFormat, ALvoid *data, ALsizei size, ALsizei freq)
{
// Copy
2002 Feb 18
0
Solaris 8 smb problem
I'm not sure if this is a samba/solaris problem or a Win98 problem and I'll tell you why. I have a Solaris 8 server runing samba 2.2.2, a linux/samba 2.0.7 box and a couple Win 98 boxes. When I did a complete restore of my Win98 box from tape, I could no longer access the Solaris 8 server via network neighbourhood. I can see the Solaris/samba box there with the other Win98 and linux box
2002 Feb 22
1
(no subject)
Hi people, sorry for the previous HTML stuff, I hope this time it's plain
text. Here's my problem:
I'm not sure if this is a samba/solaris problem or a Win98 problem and I'll
tell you why. I have a Solaris 8 server running samba 2.2.2, a linux/samba
2.0.7 box and a couple Win 98 boxes. When I did a complete restore of my
Win98 box from tape, I could no longer access the Solaris
2001 Nov 22
14
Small vorbis files with vorbisfile
I think I have bumped into the small file error, or I''m doing something
stupid. The files are short audio effects for a game (embedded in our own
data format).
Sample info:
Vorbis packets: 1 (4 kb)
Samples: 28672
Samplerate: 22 kHz
Channels: 2
This is what I''m doing when I want to get a number of bytes from the stream:
The problem is that ov_pcm_tell always returns 0. And so
2002 Feb 25
2
(no subject)
did U use :
smbpasswd -a user
th passwd must be the same
rick.
>From: "Gary Ferrer" <gary@ferrer.yi.org>
>To: "Samba-users" <samba@lists.samba.org>
>Subject: [Samba] (no subject)
>Date: Fri, 22 Feb 2002 00:07:04 -0800
>
>Hi people, sorry for the previous HTML stuff, I hope this time it's plain
>text. Here's my problem:
2003 Dec 01
0
No subject
An smbclient -L listing from the linuxbox shows resources available on =
the sunbox:
linuxbox:~$ smbclient -L sunbox
added interface ip=3D192.168.0.3 bcast=3D192.168.0.255 =
nmask=3D255.255.255.0
Password:=20
Anonymous login successful
Domain=3D[VANCOUVER] OS=3D[Unix] Server=3D[Samba 2.2.2]
Sharename Type Comment
--------- ---- -------
root
2014 May 23
2
ov_pcm_seek to sample zero of Theora/Vorbis file hangs
Hi all,
I'm having a little trouble with a Vorbis decoder hanging (actually hard
looping the CPU) when I call ov_pcm_seek(&vorbis_file, 0) on a multiplexed
theora/vorbis file. It appears to be the vorbisfile library that has the
problem. The call to ov_pcm_seek never returns.
Seeking in non-multiplexed, including chained, files is OK. Seeking to other
values, including sample 1, works
2015 Jun 01
3
Signaling incoming call
Steve Edwards <asterisk.org at sedwards.com> schrieb:
> You can fiddle with the ring tone by phone specific configuration and
> phone specific SIP headers (sipaddheader(Alert-Info: ...)).
>
> These seem relevant:
>
> http://www.voip-info.org/wiki/view/RTTTL+melodies+for+ST2030 (the
> discussion looks relevant as well).
>
>
2001 Jan 03
1
Use of const
> Neither. initial could be const, but isn't. libvorbis doesn't make much
> (any?) use of the const keyword, though there are plenty of places it
would
> probably be good to use.
Because the source files are C and not C++, parameter types aren't checked,
so is the use of const really a good idea?
For example, this compiles fine (on VC++ 6), but itsn't right:
int
2014 Feb 02
0
unsubscribe
On 2014-02-02, at 12:00 PM, vorbis-request at xiph.org wrote:
> Send Vorbis mailing list submissions to
> vorbis at xiph.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
> http://lists.xiph.org/mailman/listinfo/vorbis
> or, via email, send a message with subject or body 'help' to
> vorbis-request at xiph.org
>
> You can reach the person
2004 Sep 07
3
Introducing ov_open_callbacksp and ov_clearp
Hello,
I've been looking to the libvorbisfile and got into troubles when trying to
use it: I need to compile it on a PalmOS and the libvorbisfile must be
compiled in ARM whereas calling code is in 68K. This implies that the
interface ov_open_callback is not usable because the OggVorbis_File *vf must
point to something in the target architecture (ARM) whereas the caller
cannot do that.
As
2010 Nov 22
3
save a regression model that can be used later
Hi everyone
I have a question about how to save a regression model in R and how to retrieve it for making predictions in a new session.
To be more specific, I fitted a multilevel logistic regression model using the lmer from the "lme4" package. I then successfully make predictions using fitted(mymodel).
Since data are complex (three levels, nested, numerous categorical and
2015 Jun 01
0
Signaling incoming call
> Hi Steve!
>
> Thank you very much!
> It seems to run!
>
> I wrote that:
>
> exten => _00493513333333,n,Set(__ALERT_INFO=Bellcore-r3)
> exten => _00493513333333,n,SIPAddHeader("Alert-Info:<
http://www.notused.com
> >\;info=alert-external\;x-line-id=0")
>
> and the phone rings with another melody.
> Very curious is, that if I
2000 Apr 21
3
vorbisfile updates, and a couple of questions
The changes to vorbisfile that I suggested earlier have now been committed -
this is mostly a merge of my code with a similar patch from Martin Vogt
(thanks Martin).
The old ov_open() interface remains untouched - and for many people, this is
all you'll need to use, ever. It now calls the new interface with
appropriate arguments.
The new ov_open_callbacks() function adds an extra argument to
2001 Nov 18
5
vorbisfile.o givng me problems
I have been having problems compling vorbis on my computer( running redhat
7.1 ), it gives me a bunch of errors about vorbisfile.o( at least that what
the errors are complaining about...I don't know enough to figure out what is
wrong ).
Below is the output I get from compile:
Making all in examples
make[1]: Entering directory `/home/mchavez/devel/vorbis/examples'
/bin/sh ../libtool
2001 Nov 18
5
vorbisfile.o givng me problems
I have been having problems compling vorbis on my computer( running redhat
7.1 ), it gives me a bunch of errors about vorbisfile.o( at least that what
the errors are complaining about...I don't know enough to figure out what is
wrong ).
Below is the output I get from compile:
Making all in examples
make[1]: Entering directory `/home/mchavez/devel/vorbis/examples'
/bin/sh ../libtool
2002 Aug 01
1
ov_raw_seek doesn't work ?
I found a problem with ov_raw_seek function in oggvorbis win32sdk 1.0.
When i called this function it returned OV_EINVAL immediatelly. I
solved the issue by replacing the ov_raw_seek by ov_pcm_seek, which
worked perfectly, but i would like to use the raw variant due to
performace reason . Is anybody aware of this strange behaviour ?
Martin Cesky
<p><p>--- >8 ----
List