search for: myaudio

Displaying 9 results from an estimated 9 matches for "myaudio".

Did you mean: maudio
2006 Feb 20
2
How to use Speex Cross-Browser, Cross-Platform on Web Pages
...one where I can get speex working!) I would like to be able to bring up a player with the correct, HTML 4.01 approach, that should support any browser that recognizes the MIME type and the correct use of the object tag. The tag looks like this: <object type="audio/x-speex" data="myaudio.spx"> If your browser does not support a player object, <a href="myaudio.spx">download the speech</a> and play it separately. </object> (The main object tag gives the mime type and file location. The text between it and the close is an alternate rendering, for b...
2006 Feb 20
2
How to use Speex Cross-Browser, Cross-Platform on Web Pages
...ould like to be able to bring up a player with the correct, HTML 4.01 > > approach, that should support any browser that recognizes the MIME type and the > > correct use of the object tag. The tag looks like this: > > > > <object type="audio/x-speex" data="myaudio.spx"> > > If your browser does not support a player object, <a href="myaudio.spx">download > > the speech</a> and play it separately. > > </object> > > > > (The main object tag gives the mime type and file location. The text between...
2012 May 21
0
Problems seeking with liboggz
-----Original Message----- From: Julio Cesar Esteves Cabezas [mailto:jcabezas at inovax.com.br] Sent: segunda-feira, 21 de maio de 2012 20:29 To: 'Conrad Parker' Subject: RE: [ogg-dev] Problems seeking with liboggz Hi, Attached goes MyAudio.spx. Julio. -----Original Message----- From: conrad.parker at gmail.com [mailto:conrad.parker at gmail.com] On Behalf Of Conrad Parker Sent: segunda-feira, 21 de maio de 2012 20:11 To: jcabezas at inovax.com.br Cc: ogg-dev at xiph.org Subject: Re: [ogg-dev] Problems seeking with liboggz Hi, can...
2012 May 23
0
Problems seeking with liboggz
...liboggz, as shown in previous posts ? Thanks, Julio. -----Original Message----- From: Julio Cesar Esteves Cabezas [mailto:jcabezas at inovax.com.br] Sent: segunda-feira, 21 de maio de 2012 20:29 To: 'Conrad Parker' Subject: RE: [ogg-dev] Problems seeking with liboggz Hi, Attached goes MyAudio.spx. Julio. -----Original Message----- From: conrad.parker at gmail.com [mailto:conrad.parker at gmail.com] On Behalf Of Conrad Parker Sent: segunda-feira, 21 de maio de 2012 20:11 To: jcabezas at inovax.com.br Cc: ogg-dev at xiph.org Subject: Re: [ogg-dev] Problems seeking with liboggz Hi, can...
2006 Feb 20
0
How to use Speex Cross-Browser, Cross-Platform on Web Pages
...ing!) > > I would like to be able to bring up a player with the correct, HTML 4.01 > approach, that should support any browser that recognizes the MIME type and the > correct use of the object tag. The tag looks like this: > > <object type="audio/x-speex" data="myaudio.spx"> > If your browser does not support a player object, <a href="myaudio.spx">download > the speech</a> and play it separately. > </object> > > (The main object tag gives the mime type and file location. The text between it > and the close is...
2006 Feb 20
0
How to use Speex Cross-Browser, Cross-Platform on Web Pages
...ring up a player with the correct, HTML 4.01 > > > approach, that should support any browser that recognizes the MIME type > and the > > > correct use of the object tag. The tag looks like this: > > > > > > <object type="audio/x-speex" data="myaudio.spx"> > > > If your browser does not support a player object, <a > href="myaudio.spx">download > > > the speech</a> and play it separately. > > > </object> > > > > > > (The main object tag gives the mime type and f...
2006 Feb 21
2
How to use Speex Cross-Browser, Cross-Platform on Web Pages
...HTML > 4.01 > > > > approach, that should support any browser that recognizes the MIME > type > > and the > > > > correct use of the object tag. The tag looks like this: > > > > > > > > <object type="audio/x-speex" data="myaudio.spx"> > > > > If your browser does not support a player object, <a > > href="myaudio.spx">download > > > > the speech</a> and play it separately. > > > > </object> > > > > > > > > (The main object...
2012 May 21
1
Problems seeking with liboggz
...myReadPacketCallback (OGGZ* oggz, oggz_packet* packet, long serialno, void* user_data); int myReadPageCallback (OGGZ* oggz, const ogg_page* og, long serialno, void* user_data); int _tmain(int argc, _TCHAR* argv[]) { OGGZ* pOGGZ; int ret; oggz_off_t ofs; pOGGZ = oggz_open("MyAudio.spx", OGGZ_READ | OGGZ_AUTO); ret = oggz_set_read_callback (pOGGZ, -1, myReadPacketCallback, (void*)0); ret = oggz_set_read_page (pOGGZ, -1, myReadPageCallback, (void*)0); ofs = oggz_seek(pOGGZ, 0, SEEK_END); printf("\n Audio file size in bytes = %8lld", ofs)...
2012 May 16
2
Problems seeking with liboggz
Hi, I intend to use Ogg+Speex for voice recording/playback in a VoIP app. I am experimenting with liboggz to get acquainted with its API. As test files I am using some Ogg-Speex files converted from WAV files with speexenc.exe. I wrote a little testing app in Visual Studio 2010 under Windows 7. I defined OggzReadPage and OggzReadPacket callbacks with oggz_set_read_page()