Displaying 17 results from an estimated 17 matches for "vcomment".
Did you mean:
comment
2002 Jul 12
1
vcomment question
vcomment.c contains this line:
fprintf(stderr, "Vorbiscomment " VERSION "\n");
I can't figure how / where VERSION is defined.
<p>
--
-:-:- David K. Gasaway
-:-:- XNS : =David K Gasaway
-:-:- Email: dave@gasaway.org
-:-:- Web : dave.gasaway.org
<p><p>--- >...
2004 Aug 06
1
Vorbis won't compile
I've checked out the latest cvs sources of:
ao
ogg
vorbis
vorbis-tools
I configured/made/installed ao, ogg and vorbis without any problem.
I also ran ldconfig after installing the libraries.
But when compiling vorbis-tools it broke with:
vcomment.c: In function `main':
vcomment.c:84: `LOCALEDIR' undeclared (first use in this function)
vcomment.c:84: (Each undeclared identifier is reported only once
vcomment.c:84: for each function it appears in.)
make[1]: *** [vcomment.o] Error 1
make[1]: Leaving directory
`/usr/src/ogg-vorbis/vorbi...
2002 Aug 14
0
automake 1.6 compatability patch
...ion 1.17
diff -u -r1.17 Makefile.am
--- vorbiscomment/Makefile.am 11 Jul 2002 02:45:39 -0000 1.17
+++ vorbiscomment/Makefile.am 14 Aug 2002 17:12:18 -0000
@@ -2,18 +2,24 @@
AUTOMAKE_OPTIONS = foreign
-mans = vorbiscomment.1
+man_pages = vorbiscomment.1
vorbiscommentsources = vcedit.c vcedit.h vcomment.c
if BUILD_VORBISCOMMENT
+mans=$(man_pages)
+else
+mans=
+endif
datadir = @datadir@
localedir = $(datadir)/locale
DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
-bin_PROGRAMS = vorbiscomment
+bin_PROGRAMS = @VORBISCOMMENT@
+EXTRA_PROGRAMS = vorbiscomment
mandir = @MANDIR@
man_MANS...
2001 Feb 11
0
compilation issues
...a single configure for two different programs.
;-)
AC_CHECK_LIB(socket, socket)
AC_CHECK_LIB(nsl, gethostbyname)
VORBISCOMMENT:
==============
It looks like vorbiscomment is now back "in favor", so I'll start
mentioning things that are broken...
-- <getopt.h> is not found in vcomment.h.
See my comments about the whole getopt situation in my previous e-mail.
-- "vcomment.c", line 196: warning: improper pointer/integer combination:
op "="
Same as above -- Sun prototypes index() in <strings.h>.
{+} Jeff Squyres
{+} squyres@cse.nd.edu
{+} Perpetual Obs...
2001 Mar 11
0
patches for building vorbis-tools on irix with sgi cc
...59:05 2001
--- oggenc/audio.c Sun Mar 11 19:59:14 2001
***************
*** 14,19 ****
--- 14,20 ----
#include <string.h>
#include <sys/types.h>
#include <math.h>
+ #include <alloca.h>
#include "audio.h"
#include "platform.h"
*** vorbiscomment/vcomment.c-orig Sun Mar 11 20:15:04 2001
--- vorbiscomment/vcomment.c Sun Mar 11 20:15:09 2001
***************
*** 193,199 ****
* as the comment spec requires. For the moment, we
* also restrict ourselves to 0-terminated values */
! mark = index(line, '=');
if (ma...
2004 Nov 22
1
Editing comments in Vorbis files...
I tryed this piece of code to write a second file with the same comments
in it but the program always crash on vcedit_write()... I'm unable to
figure out why it is crashing. Compiled under Visual Stucio .NET 2003
with ogg.dll and vorbis.dll linked dynamically! vcomment doesn't crash
linked dynamically with ogg.dll and vorbis.dll
#include <stdio.h>
#include <stdlib.h>
#include "vcedit.h"
#include "utf8.h"
#include "i18n.h"
int main()
{
FILE *oggFile;
FILE *heym;
vcedit_state *state;
vorbis_comment *vc;
if ((...
2001 Jan 20
2
Makefile.am patch
...am,v
retrieving revision 1.6
diff -c -r1.6 Makefile.am
*** Makefile.am 2001/01/19 11:39:23 1.6
--- Makefile.am 2001/01/20 13:52:55
***************
*** 6,12 ****
INCLUDES = @OGG_CFLAGS@ @VORBIS_CFLAGS@
! vorbiscomment_LDFLAGS = @OGG_LIBS@ @VORBIS_LIBS@
vorbiscomment_SOURCES = vcedit.c vcedit.h vcomment.c
debug:
--- 6,12 ----
INCLUDES = @OGG_CFLAGS@ @VORBIS_CFLAGS@
! vorbiscomment_LDADD = @VORBIS_LIBS@ @OGG_LIBS@
vorbiscomment_SOURCES = vcedit.c vcedit.h vcomment.c
debug:
{+} Jeff Squyres
{+} squyres@cse.nd.edu
{+} Perpetual Obsessive Notre Dame Student Craving Utter Madness
{+} "...
2008 Dec 18
2
Updated comment padding patches
...non-text attachment was scrubbed...
Name: oggenc-pad-2.diff
Type: text/x-diff
Size: 6292 bytes
Desc: not available
Url : http://lists.xiph.org/pipermail/vorbis-dev/attachments/20081218/34fafa4c/attachment-0002.diff
-------------- next part --------------
A non-text attachment was scrubbed...
Name: vcomment-pad-2.diff
Type: text/x-diff
Size: 46487 bytes
Desc: not available
Url : http://lists.xiph.org/pipermail/vorbis-dev/attachments/20081218/34fafa4c/attachment-0003.diff
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
S...
2001 Sep 30
3
UTF-8 stuff
...line argument.
configure.in: Use AM_LANGINFO_CODESET.
utf8.h, utf8.c: These files are totally rewritten, apart from the
Windows part. Instead of utf8_encode() and utf8_decode() there's
convert_to_utf8() and convert_from_utf8(), which no longer have an
"encoding" argument.
oggenc.c, vcomment.c: Call setlocale(), so that nl_langinfo() will
work. Remove the "encoding" option and "encoding" arguments. Instead
there's either nl_langinfo(CODESET) or the environment variable
CHARSET. Call convert_{to|from}_utf8() instead of utf8_{en|de}code().
Makefile.am: Different...
2012 Apr 13
1
an assortment of mail serving issues
...l_body = $mail_body."[6Colors - FOOTAGE]<br /><br />";
$mail_body = $mail_body."Name: ".$vName."<br />";
$mail_body = $mail_body."E-Mail Address: ".$vEmail."<br /><br />";
$mail_body = $mail_body."Comments: ".$vComment."<br />";
$mail_body = $mail_body."------------ END ------------ <br />";
$mail_body = $mail_body."<br /></body></html>";
mail($mail_to, $mail_subject, $mail_body, $headers);
This mail is failing to be delivered.
2. We have a database...
2002 Jan 10
3
UTF8_LANG: a much better idea
...rs intended to be ignorable.
This also eliminates the major restrictions of UTF8_LANG; you can change
language if you want, wherever you want.
(We were already able to use this, as it's part of Unicode; nobody would
use it if it wasn't explicitely recommended, though.)
We could even make vcomment automatically add some of these tags. If
the local encoding is Shift-JIS, we're pretty safe adding the Japanese
tag. (It might be English, or some other Roman language, but it's OK to
display those in a Japanese font.) Of course, this should be optional,
though I don't see any proble...
2006 Jul 13
0
[vorbis-tools] Some patches coming from Debian bugs
...2)
+++ vorbiscomment/vcedit.c (working copy)
@@ -9,6 +9,10 @@
* last modified: $Id: vcedit.c,v 1.23 2003/09/03 07:58:05 calc Exp $
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Index: vorbiscomment/vcomment.c
===================================================================
--- vorbiscomment/vcomment.c (revision 11702)
+++ vorbiscomment/vcomment.c (working copy)
@@ -8,16 +8,15 @@
* Of limited usability on its own, but could be useful.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif...
2006 Jul 13
0
[vorbis-tools] Some patches coming from Debian bugs
...2)
+++ vorbiscomment/vcedit.c (working copy)
@@ -9,6 +9,10 @@
* last modified: $Id: vcedit.c,v 1.23 2003/09/03 07:58:05 calc Exp $
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Index: vorbiscomment/vcomment.c
===================================================================
--- vorbiscomment/vcomment.c (revision 11702)
+++ vorbiscomment/vcomment.c (working copy)
@@ -8,16 +8,15 @@
* Of limited usability on its own, but could be useful.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif...
2001 Jan 21
4
Comments ect
(Just a copy of the message I sent to Vorbis, better to send it here.)
Hello,
I'm just letting everyone know that I've begun the preliminary part of putting
together a working comment system. I have a few idea's on how to implement
this system.
1. What I would like to do is grab the General and Input SDK's for Winamp
first. Then I would like to add to our existing Winamp
2002 Jan 06
1
Saving comments to file
Hi
Would you please CC me answers to this, I'm not subscribed to the list...
I'm pondering writing a GUI program for editing Ogg file comment fields,
but I can't find any functions in the API documentation for saving the
comment structure to file. Is there an easy way to do this (except for
copying vcedit.c from vorbis-tools as I've seen others do!)
Thank you,
Martin Sjögren
2003 May 18
1
Problems with the pyvorbis Python wrapper under Windows
Hi!
The following Python code does what is excepted under Linux:
>>> from ogg.vorbis import *
>>> com=VorbisFile('01.ogg').comment()
>>> com['title']='foo'
>>> com.write_to('01.ogg')
but under Windows I get the following error:
Traceback (most recent call last):
File "<stdin>", line 1, in ?
IOError: [Errno
2002 Jul 12
1
toner cartridges
...,rR{.n+z,z{m^+-)emw
<!-- body="end" -->
<hr noshade>
<ul>
<li><strong>Next message:</strong> Ralph Giles: "[vorbis-dev] c++ comments in vorbis source"
<li><strong>Previous message:</strong> Ben Stanley: "Re: [vorbis-dev] vcomment question"
<li><strong>Next in thread:</strong> Monty: "Re: "Returned due to virus; was:" [vorbis-dev] toner cartridges"
<li><strong>Reply:</strong> Monty: "Re: "Returned due to virus; was:" [vorbis-dev] toner cartridges&quo...