similar to: Some ideas about embeding data in ogg files...

Displaying 20 results from an estimated 3000 matches similar to: "Some ideas about embeding data in ogg files..."

2009 Jan 18
2
How would you recommend I create a new layer of data...
Two parts are marked below... *If anyone remembers, I have been working on a new feature for vorbis. I am creating another piece of data showing non audio interpretation of music to help visual, beat and other aspects of audio that can't be interpreted by a computer but only entered with the human touch. Currently I have a stream of data, nanosecond measurements of key presses on a keyboard,
2019 Aug 26
3
CentOS 8 will be released soon?
Le 25/08/2019 ? 23:07, Stephen John Smoogen a ?crit?: > I have had several people explain to me that my comments were > out-of-place and out-of-turn. When I wrote them originally I thought I > was going from experience of previous releases and thought I was being > matter of fact. In rereading I realized I was crass and grumpy. My > un-reserved apologies for that. I should have
2009 Nov 04
1
vglm(), t values and p values
Hi All, I'm fitting an proportional odds model using vglm() from VGAM. My response variable is the severity of diseases, going from 0 to 5 (the severity is actually an ordered factor). The independent variables are: 1 genetic marker, time of medical observation, age, sex. What I *need* is a p-value for the genetic marker. Because I have ~1.5 million markers I'd rather not faffing
2019 Aug 25
0
CentOS 8 will be released soon?
On Sat, 24 Aug 2019 at 13:58, Alan Mead <amead at alanmead.org> wrote: > > On 8/24/2019 12:49 PM, Stephen John Smoogen wrote: > > On Sat, 24 Aug 2019 at 01:09, Turritopsis Dohrnii Teo En Ming > <ceo at teo-en-ming-corp.com> wrote: > > Good afternoon from Singapore, > > According to the CentOS 8 build timeline, everything has been completed except release
2019 Aug 28
0
CentOS 8 will be released soon?
On Mon, Aug 26, 2019 at 12:41 PM Nicolas Kovacs <info at microlinux.fr> wrote: > Le 25/08/2019 ? 23:07, Stephen John Smoogen a ?crit : > > I have had several people explain to me that my comments were > > out-of-place and out-of-turn. When I wrote them originally I thought I > > was going from experience of previous releases and thought I was being > > matter of
2008 Aug 30
0
Flash embeding in pdf
Hi all I want to embed flash with pdf. I guess i cannot directly do that..I will have to first convert flash to jpg or other image format and then put it in pdf. Let me know how can I do it? I am generating chart which i want the user to download using the download option and the format should be pdf. Thanks -- Posted via http://www.ruby-forum.com/.
2017 Sep 08
1
Embeding a path in address extensions
I generate bcc backups with the pattern backups+DATE.user.domain.tld at myBackupDomain.tld (for example, backups+20170908.kremels.kreme.com at myBackupDomain.tld) This puts mail in ?/.20170908.kremels.kreme.com/new What I would like to do is get the expansion to generate the following path ?/.20170908/.kremels.kreme.com/new Of course the date changes everyday, but it will always be numeric
2012 Jun 04
1
embeding xml to ogg
Hi all, i googled about it first but didn't got needed results. I work on project which basically record speech and manage it. The format of choice is ogg/speex or ogg/vorbis, depending on quality. To manage files we can't use VorbisComment. We also can't use external database to store needed information. XMP fits to our needs, but it looks like there is still no ready documentation
2012 Jun 04
0
embeding xml to ogg
On 06/04/2012 04:08 PM, Martin Leese wrote: > "Benjamin M. Schwartz" wrote: > >> Just store the XMP in a >> VorbisComment field named "XMP" (or whatever name you like). > > This suggestion falls well short of an optimal > solution. You haven't specified any requirements, so I have no idea what would be more helpful. > The optimal solution
2012 Jun 08
0
embeding xml to ogg
Oleksij Rempel <bug-track at fisher-privat.net> wrote: > Ok, > you are right, using existing technology will save time :) What has not yet been discussed is what you are streaming *to*. That is to say, what software is going to receive the metadata, and what will it do with it. This is important because VorbisComments can contain pretty much anything you want. Suggestions for field
2007 Oct 20
0
Live Streaming and embeding into webpage on OSX
Marc Manthey schrieb: > hello free streamers, > > after i had not much luck with " Darwin streaming server" ( because of > a lack of NAT implementation ) > > i got a hint from a Wireless mailing list to try OGG/Theora streaming. > > I ?ve found a great site here <http://www.oddsock.org/guides/video.php> > > and downloadet and installed
2007 Oct 20
0
Live Streaming and embeding into webpage on OSX
Marc Manthey wrote: > > hi thomas. all > > guess i should workout the NAT stuff without problems , but i run into > another issue > > i installed "icecast" with "darwin ports" on osx after > > ./configure > make > make install > > >
2007 Oct 27
1
Live Streaming and embeding into webpage on OSX
On Oct 20, 2007, at 3:50 PM, Karl Heyes wrote: > Marc Manthey wrote: >> source='auth_url.c' object='auth_url.o' libtool=no \ >> depfile='.deps/auth_url.Po' tmpdepfile='.deps/auth_url.TPo' \ >> depmode=gcc3 /bin/sh ../depcomp \ >> gcc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -ffast-math -fsigned-char - >> I/usr/include/libxml2
2009 Jan 20
2
Embeding R
Hi, I'm planning to embed R into an application, with the following context: - This application is written in Java (and managed with maven). I plan accessing R using JRI. - This application must be installable on several plateform (linux, mac os, windows). - The R engine must embed library, some of them having native code in C or Fortran. Does this sound reasonable? I would be very
2012 Jun 05
0
embeding xml to ogg
On 05.06.2012 20:41, Martin Leese wrote: > On 6/4/12, Benjamin M. Schwartz wrote: > >> On 06/04/2012 04:08 PM, Martin Leese wrote: > ... >>> The optimal solution is described at: >>> https://wiki.xiph.org/XMLEmbedding >> >> As that page says, "This page is for development of a specification for >> embedding XML streams in Ogg.".
2012 Oct 30
3
newbie: embeding seq in a list
Suppose I want to create a structure containing the following values: 0.8,0.9,1.0,1.1,1.2 If I use env <- list(0.8,0.9,1.0,1.1,1.2) then R returns > env [[1]] [1] 0.8 [[2]] [1] 0.9 [[3]] [1] 1 [[4]] [1] 1.1 [[5]] [1] 1.2 But, if I try to 'save some key-strokes', and use env <- list(seq(0.8,1.2,by=0.1)) then R returns > env [[1]] [1] 0.8 0.9 1.0 1.1 1.2 I'd
2012 Jun 04
3
embeding xml to ogg
"Benjamin M. Schwartz" wrote: > On 06/04/2012 10:50 AM, Oleksij Rempel wrote: ... >> XMP fits to our needs, but it >> looks like there is still no ready documentation about muxing XML to ogg. > > Well then you've already solved the problem. Just store the XMP in a > VorbisComment field named "XMP" (or whatever name you like). This suggestion falls
2012 Jun 05
2
embeding xml to ogg
On 6/4/12, Benjamin M. Schwartz wrote: > On 06/04/2012 04:08 PM, Martin Leese wrote: ... >> The optimal solution is described at: >> https://wiki.xiph.org/XMLEmbedding > > As that page says, "This page is for development of a specification for > embedding XML streams in Ogg.". "XML streams" are not simply XML > documents. They are _temporally
2003 Aug 30
0
W2k, SP4 and Domain logon
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi all. Yesterday I had the funny idea of upgrading all my Windows 2000 Professional worksations (20 W2k boxes more or less) to SP4. I run Samba 2.2.8a on a glorious RedHat 6.2, and after the endless download-and-reboot I found with no W2K client able to logging in. I skimmed the mail archives, tried a bunch of suggestion from really a lot of
2007 Oct 20
2
Live Streaming and embeding into webpage on OSX
On Oct 20, 2007, at 9:34 AM, Thomas B. Ruecker wrote: > Marc Manthey schrieb: >> hello free streamers, >> >> after i had not much luck with " Darwin streaming >> server" ( because of a lack of NAT implementation ) >> >> i got a hint from a Wireless mailing list to try OGG/Theora >> streaming. >> >> I ?ve found a great site