[vorbis-dev] Re: ogg vorbis controls (fwd)

John Zitterkopf zitt at bigfoot.com
Tue Jul 3 12:46:26 PDT 2001



Anyone know when/if the RC1 code will appear on the xiph.org WWW site?
 
John

---------- Forwarded message ----------
Date: Tue, 03 Jul 2001 18:52:53 -0000
From: Deion Galbreath <deiong at hotmail.com>
To: zitt at bigfoot.com
Subject: Re: ogg vorbis controls

hi, ive been trying to get the source code however it seems they are only 
includeing it in teh cvs not there online directory. i have tried to learn 
how to use cvs unsucessfully and wincvs btu i cant figure it out. so until 
they put the examples in there directory
http://www.xiph.org/ogg/vorbis/download/
it seems that there nightly snapshot doesnt include teh rc1 code to teh 
encoder or decoder. as soon as i can get my hands on it i will be updateing 
the controls to rc1 :)

Cheers.  Deion G.

From: John Zitterkopf <zitt at bigfoot.com>
Reply-To: zitt at bigfoot.com
To: Deion Galbreath <deiong at hotmail.com>
Subject: Re: ogg vorbis controls
Date: Tue, 3 Jul 2001 09:42:20 -0700 (PDT)

Deion,

I look forward to playing with it this 4th of july weekend.
I'll let you know.

Any plans to "update" to Release Can. 1 of Vorbis source?

John

               EE's do it 'til it Hz 8-)
~~~~~~~~~~~~~~~~~~John D. Zitterkopf~~~~~~~~~~~~~~
zitt at bigfoot.com           http://www.zittware.com
_____________________________________________________________________
Under US Code Title 47, Sec.227(b)(1)(C), Sec.227(a)(2)(B)These email
address may not be added to any commercial mail list with out my
permission. Violation of my privacy with advertising or SPAM will
result in a suit for a MINIMUM of $500 damages/incident, $1500 for
repeats.

On Tue, 3 Jul 2001, Deion Galbreath wrote:

 > John,
 >       Included is the latest ogg encoder contol. it's a new control. as i
 > didn't want to break the version compatibility, but because of so many 
new
 > features i would have. so i wrote it to a totally new fresh control. here
 > are a list of the new features.
 >
 > *You can specify bitrates of
 > 320000,256000,224000,192000,160000,128000,112000,96000,80000, 64000, 
56000,
 > 48000, 40000.
 > * you can now specify the outputfile.
 > * there is a stop function to stop encoding.
 > *added info tagging. you can tag the  artist, album, title, tracknumber, 
and
 > comment.
 >
 > to support batch you can use something like this.
 >
 > Private Sub OEnc1_PercentDone(ByVal nPercent As Long)
 >
 >     prog.Progress = nPercent
 >     Label1.Caption = nPercent & " %"
 >
 >     If nPercent = 100 Then
 >         prog.Progress = 100
 >         ListBox.RemoveItem 0
 >
 >         If ListBox.ListCount > 0 Then
 >             prog.Progress = 0
 >             OEnc1.openfilename = ListBox.List(0)
 >             OEnc1.Encode
 >         End If
 >         If ListBox.ListCount = 0 Then
 >             prog.Progress = 0
 >             MsgBox "You Are Now Done", vbInformation, "Finished"
 >         End If
 >     End If
 >
 > End Sub
 >
 >
 > so yes when teh percent hits 100 percent it is infact finished :)
 >
 > Hope you enjoy. :)
 >
 > if you have any problems or questions feel free to email me.
 >
 > Deion G.
 >
 > Deion,
 >
 > On Fri, 29 Jun 2001, Deion Galbreath wrote:
 >
 >  > Here are the problems I noticed in order of importance:
 >  > 1) Unable to specify OGG bit rates.
 >  > I am working on this right now hopefully in teh next couple of days it
 >  > should be ready.
 >
 > If you need someone to beta/alpha test it; please let me know.
 >
 >  > 2) Unable to specify OGG comments.
 >  > I havent added this part in yet. as soon as i get some other stuff out 
of
 >  > the way i'll add this in.
 >
 > This is a very important feature for my project.
 > I noticed that the Vorbis implementation of the BladeEnc DLL spec
 > implements the needed AddComment() code. If you need this code; please 
let
 > me know.
 >
 >  > 4) Control must be visible to work. Setting visible to false; prevents
 >  > component from firing %done event.
 >  > ' that is odd. i havent tested the controls in delphi h owever 
someothers
 >  > say it works great in delphi 5 and teh beta of 6.
 >
 > I can live with this... simply setting the height/width of the control to
 > 1 will show it as 1pixelx1pixel.
 >
 >  > 5) No "Encoding complete" event to let the programmer know the entire 
WAV
 >  > file has been converted.  there is a function in vb its
 >  >
 >  > Private Sub OEnc1_PercentDone(ByVal nPercent As Long)
 >  >
 >  > this will return the value of percent done when it hits 100 its done 
:)
 >
 > I figured that; however, I wasn't sure that if I immediately issued
 > another encode command; if the data in the existing OGG file will be
 > incomplete.
 >
 > I would be using your control to Batch convert from MP3 -> WAV -> OGG and
 > would use the 100% as "done" so I can start a new conversion. Is your 
code
 > completely done when 100% is sent in this event?
 >
 > Thanks,
 > John
 >
 >  > ----- Original Message -----
 >  > From: "John Zitterkopf" <zitt at bigfoot.com>
 >  > To: "Deion Galbreath" <deiong at hotmail.com>
 >  > Sent: Thursday, June 28, 2001 10:38 PM
 >  > Subject: RegUsr: ogg vorbis controls
 >  >
 >  >
 >  >  > I just received your controls but did doesn't come with any
 >  > documentation?
 >  >  > What files do I need to redistribute?
 >  >  >
 >  >  > John
 >  >  >
 >  >  > ----- Original Message -----
 >  >  > From: "Deion Galbreath" <deiong at hotmail.com>
 >  >  > To: <zitt at bigfoot.com>
 >  >  > Sent: Thursday, June 28, 2001 9:15 AM
 >  >  > Subject: ogg vorbis controls
 >  >  >
 >  >  >
 >  >  > > Thank you for ordering the ogg vorbis active x control. included 
is
 > the
 >  >  > > control and examples of how to use it. do not redistribute this
 > setup
 >  > file
 >  >  > > with anyone for any reason what so ever. Also do not redistribute
 > the
 >  >  > > licence(.lic) files to anyone for any reason. by doing so would 
void
 >  > your
 >  >  > > licence. :)
 >  >  > >
 >  >  > > thanks.. if you have any questions please feel free to ask..
 >  >  > >
 >  >  > >
 >  >  > > Cheers.  Deion G.

--- >8 ----
List archives:  http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'vorbis-dev-request at xiph.org'
containing only the word 'unsubscribe' in the body.  No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.



More information about the Vorbis-dev mailing list