similar to: vorbis_comment interface

Displaying 20 results from an estimated 1000 matches similar to: "vorbis_comment interface"

2007 Aug 10
5
[Patch] Const correct tags functions
Hi all, I tend to compile my code with all GCC warnings turned on. However, when I do this : vorbis_comment_add_tag(&vdata->vc,"ENCODER","libsndfile"); I get the following warning messages: warning: passing argument 2 of 'vorbis_comment_add_tag' discards qualifiers from pointer target type warning: passing argument 3 of
2000 Jul 29
0
New comment interfaces
I just committed a bunch of work on the comment interfaces in libvorbis. Importantly, there is now a way to deal with non-0-terminated strings being returned in the comment structure. THe vorbis_comment struct has an additional member - int *comment_lengths. Unless you're editing the struct directly (i.e. not using vorbis_comment_add(), etc.), no changes will be needed to applications (but
2000 Oct 18
3
ov_comment spec
I've been working towards a mp3info like tool, OggInfo, which will surplant vorbiscomment in functionality, and also incorportate mp3info like featuers. Looking at existing vorbis api calls, i find: vorbis_comment_add() /* unsupervised string insertion */ vorbis_comment_add_tag() /* formated TAG=text insertion */ vorbis_comment_query() /* scans for matching tag (up to count duplicates) and
2002 Dec 13
1
equalizer api
Somebody reported a bug against zinf that the equalizer did not work with oggvorbis streams. Upon looking, I noticed that while the mp3 decoder (xing) has an equalizer interface to modify the decoding, I could not find an equivalent for ogg. Does the beast exist? Should it? Please cc: me -- Kristian G. Kvilekval email:kris@cs.ucsb.edu office:(805)893-4276 http://www.cs.ucsb.edu/~kris
2015 Oct 12
2
Use of alloca in vorbis_comment_add_tag
Dear Vorbis devs, I'm Robert Kausch, author of fre:ac - free audio converter. Please consider using _ogg_malloc/_ogg_free in place of alloca in vorbis_comment_add_tag. alloca will cause undefined behaviour/crashing when it causes a stack overflow which can easily happen when adding cover art in a METADATA_BLOCK_PICTURE comment. I had a user trying to convert a FLAC file with a 2 MB
2003 Oct 20
1
vorbis_comment_add_tag() and Codewarrior OS X
Hi, after banging my head against the wall for quite a while I finally found what crashes my code: Because I'm working with Codewarrior 8 on OS X I had to compile the ogg / vorbis libs with CW. To do so I used the CW projects for OS 9 and modified them. Howerver, they don't work as expected. Everything seems to be fine, encoding & decoding works, only vorbis_comment_add_tag() crashes
2001 Nov 11
1
Reading tags (again)...
Ok, so I finally got the id3/mp3 end of things worked out for the next release of QTagger and I'm back to implementing tag reading for Ogg Vorbis. I've got some code that will read tags, but I haven't been able to figure out how to write them. Here's the code that I'm using. It's a fine C/C++ mix. The code will eventually be in a C++ app, so I don't mind
2001 Sep 30
3
UTF-8 stuff
Here's a propsed heavy-duty solution for your UTF-8 problems. I'm including a patch in this message, but I'll put the new files on my web site at http://rano.org/tmp/xiph_files.tar.gz I've tested this by running vorbiscomment with and without -DHAVE_ICONV=1 in vorbis-tools/share/Makefile. It seems to work. Changed files: acinclude.m4: Add a test for nl_langinfo(CODESET). This
2001 Sep 02
0
Encoding process
I apologize for bugging you all again, but I've been trying to wrap my head around the encoding process and I'm about to have an aneurysm :P I've gone through oggenc.c, encode.c, and audio.c and I think I have a basic idea of what happens. I got it down in pseudocode as follows: --- 1 get parameters 2 init vorbis_comment -- vorbis_comment_init() 3 init vorbis_info --
2004 Aug 06
1
ices: Metadata for im_stdinpcm
Hi, I added metadata support for the stdinpcm module of ices. The metadata have to be submitted via file (as stdin is already used for the strem). Please apply this patch to the current cvs sources. <p>Deti <p> Index: im_stdinpcm.c =================================================================== RCS file: /usr/local/cvsroot/ices/src/im_stdinpcm.c,v retrieving revision 1.8 diff
2019 Nov 05
0
Samba DC to Samba NT4 Domain Trust
On 05/11/2019 19:06, Vex Mage wrote: > > > > > Collected config ?--- 2019-11-05-10:26 ----------- > > Hostname: samba4 > DNS Domain: sambaad.engr.ucsb.edu <http://sambaad.engr.ucsb.edu> > FQDN: samba4.sambaad.engr.ucsb.edu <http://samba4.sambaad.engr.ucsb.edu> > ipaddress: 128.111.27.62 192.168.0.235 > > ----------- > > Kerberos SRV
2007 Mar 26
0
Logging album info for ogg-vorbis
Hi Aaron thats interesting, I made a similar change to icecast some time ago myself. It writes ALL metadata to the log, not only ARTIST and TRACK. We wanted to include more information into the playlist of our radio but unfortunately we discovered that oddcast doesn't send more than ARTIST and TRACK... so I am looking for something that sends really everything. What do you use as your
2013 Apr 11
0
[PATCH 1/2] Use C locale when reading ReplayGain tag
When a locale is in effect that does not use the point as the decimal mark (e.g., sv_SE or de_DE, which use a comma) and a ReplayGain tag is read for --apply-replaygain-which-is-not-lossless, the gain value was misinterpreted (e.g., "-2.29" truncated to "-2"). This is fixed by resetting the locale to "C" temporarily, based on Josh Coalson's fix of the dual case
2015 Aug 22
1
[PATCH] for potential memory leaks
Erik de Castro Lopo wrote: > Working on a fix for this and re-visiting some of this realloc() > stuff. I noticed that your patch removes the call to vorbiscomment_entry_array_delete_() in FLAC__metadata_object_vorbiscomment_resize_comments() function, and I think that it reintroduces one place of a potential memory leak: 'object->data.vorbis_comment.comments' is a pointer to an
2004 Sep 10
1
metaflac bug
metaflac --import-vc-from ... used on flac file without vorbis comment destroys the file. This patch fix it. -- Miroslav Lichvar -------------- next part -------------- --- src/metaflac/main.c.orig 2002-09-28 14:45:49.000000000 +0200 +++ src/metaflac/main.c 2002-10-06 23:36:26.000000000 +0200 @@ -1754,20 +1754,24 @@ found_vc_block = true; } while(!found_vc_block &&
2010 Aug 19
0
[LLVMdev] VMKit Boehm MMTk Compilation
For anyone who encounters this issue in the future, my issue was the configuration of llvm-gcc. Configure with --with-llvmgccdir=YOUR/PATH doesn't work, instead you are supposed to use --with-llvmgcc=PATH/TO/llvm-gcc and --with-llvmgxx=/PATH/TO/llvm-g++ That will at least get you past my error. Best, Kyle Quoting nicolas geoffray <nicolas.geoffray at gmail.com>: > I am
2019 Nov 02
0
Samba DC to Samba NT4 Domain Trust
On 01/11/2019 22:23, Vex Mage wrote: > The script is expecting dpkg however this is a Red Hat derived distro > (Fedora Server.) Where did you get the Samba packages from ? If they are the default OS packages, then you should stop using them, they use MIT kerberos and are experimental. > Here is the output as I believe the the one real command dpkg was > needed for was for bind
2007 Nov 19
1
mulitmodal distributions
Hello, I see that "mclust" is a pacakge that handles fitting mixtures of normals. Are there any other packages out that that can handle mixtures of gammas or other exponentials? Additionally, are there any packages out there that can fit bimodal distributions without mixtures? i.e., Cobb et al. 1983 using moment recursion relations? Thank you! mw Marion Wittmann, Ph.D.
2000 Oct 25
2
UTF-8 to ISO 8859-1 converter
I've got a bug pending for FreeAmp right now where the vorbis metadata plugin does not handle international characters right. The comments that are returned from vorbis_comment_query() are in UTF-8, but FreeAmp is ISO 8859-1. I've been looking for a UTF-8 --> ISO 8859-1 converter that is available for inclusion in a GPL/LGPL program and is reasonably small. There are many full blown
2019 Nov 01
0
Samba DC to Samba NT4 Domain Trust
On 01/11/2019 00:21, Vex Mage wrote: > > > > > > SAMBAAD: > [global] > dns forwarder = 128.111.41.10 > netbios name = SAMBAAD.ENGR.UCSB.EDU <http://SAMBAAD.ENGR.UCSB.EDU> > realm = SAMBAAD.ENGR.UCSB.EDU <http://SAMBAAD.ENGR.UCSB.EDU> > server role = active directory domain controller > workgroup = SAMBAAD > idmap_ldb:use rfc2307 = yes > allow