Displaying 7 results from an estimated 7 matches for "commentfile".
Did you mean:
  commentable
  
2011 Nov 01
1
vorbiscomment long string bug?
...and other images into
the vorbis comment as ALBUMART=xxxx where xxxx is a base64 encoded
data of the image file.  This makes for a very long line.
If I do this to extract the vorbis comment of a file with
an embedded cover art (the image is over 60K bytes in size):
$ vorbiscomment -l file.ogg > commentfile
It dumps the contents correctly.
However, if I try writing that result back to the file:
$ vorbiscomment -w -c commentfile file.ogg
This fails with the error:
bad comment: "xxxx"
bad comment: "xxxx"
bad comment: "xxxx"
bad comment: "xxxx"
bad comment: "...
2003 Sep 03
1
index build killed by ports/science/chemtool
...1|||||||
Stop in /usr/ports/science.|||||||
Stop in /usr/ports.|||||||
|||||||
***
Dan's posting is reproduced below:
error executing make command for science/chemtool for database 
freshports
: make -V PORTNAME -V PKGNAME -V DESCR -V CATEGORIES -V
PORTVERSION -
V PORTREVISION  -V COMMENT -V COMMENTFILE -V MAINTAINER -V 
EXTRACT_SUFX  -V BUILD_DEPENDS -V RUN_DEPENDS -V FORBIDDEN -V
BROKEN -
f /usr/home/dan/ports/science/chemtool/Makefile  
PORTSDIR=/usr/home/dan/ports
2>/tmp/FreshPorts.science.chemtool.make-
error.2003.9.3.15.37.46.6207 => 
"/usr/home/dan/ports/science/chemtool/Makefile...
2007 Nov 19
1
Re: [xiph-commits] r14188 - trunk/vorbis-tools/vorbiscomment
...t;  
>  .SH DESCRIPTION
>  .B vorbiscomment
> -Reads, modifies, and appends Ogg Vorbis audio file metadata tags.
> +Reads, modifies, and appends Vorbis audio file metadata tags.
>  
>  .SH OPTIONS
>  .IP "-a, --append"
>  Append comments.
>  .IP "-c file, --commentfile file"
> -Take comments from a file. The file is the same format as is output by the the -l option: one element per line in 'name=value' format.
> +Take comments from a file. The file is the same format as is output by the the -l option or given to the -t option: one element per l...
2010 Jun 13
2
wrappers
Hi,
I've sent one of these before, but i wasn't subscribed, and i'm unsure if it 
went out. I'm subscribed now and i've written another (i believe) nifty wrapper 
for oggz-tools.
oggz-comments - allows a user to pass the plain text file with each tag on their 
own line
theoracomment - works like 'vorbiscomment' from VorbisTools package, but sets 
comments for the
2013 May 28
5
[PATCH 1/6] Remove the --quiet (-q) option from vorbiscomment.1 man page.
...comment.1 b/vorbiscomment/vorbiscomment.1
index 0108e78..2bceb83 100644
--- a/vorbiscomment/vorbiscomment.1
+++ b/vorbiscomment/vorbiscomment.1
@@ -39,13 +39,11 @@ Reads, modifies, and appends Ogg Vorbis audio file metadata tags.
 .IP "-a, --append"
 Append comments.
 .IP "-c file, --commentfile file"
-Take comments from a file. The file is the same format as is output by the the -l option or given to the -t option: one element per line in 'tag=value' format. If the file is /dev/null and -w was passed, the existing comments will be removed.
+Take comments from a file. The file...
2010 Jun 13
0
wrappers
...D" = "-l" ] || [ "$COMMAND" = "--list" ]; then
> ? ? ? ? ? ? ? ? ? ? ? ?STATE="--list"
> ? ? ? ? ? ? ? ?elif [ "$COMMAND" = "-c" ] || [ "$COMMAND" = "--comment-file"
> ] || [ "$COMMAND" = "--commentfile" ]; then
> ? ? ? ? ? ? ? ? ? ? ? ?STATE="--comment-file"
> ? ? ? ? ? ? ? ?elif [ "$COMMAND" = "-t" ] || [ "$COMMAND" = "--tag" ]; then
> ? ? ? ? ? ? ? ? ? ? ? ?STATE="--tag"
> ? ? ? ? ? ? ? ?elif [ "$COMMAND" = &...
2001 Sep 30
3
UTF-8 stuff
...,7 @@
 #include <stdio.h>
 #include <string.h>
 #include <stdlib.h>
+#include <locale.h>
 #include "getopt.h"
 #include "utf8.h"
 
@@ -24,7 +25,6 @@
         {"help",0,0,'h'},
         {"quiet",0,0,'q'},
         {"commentfile",1,0,'c'},
-    {"encoding", 1,0,'e'},
         {NULL,0,0,0}
 };
 
@@ -37,7 +37,6 @@
         int commentcount;
         char **comments;
         int tempoutfile;
-	char *encoding;
 } param_t;
 
 #define MODE_NONE  0
@@ -47,8 +46,8 @@
 
 /* prototypes */
 void usage(...