similar to: [EXT] Re: oggenc argument to make the stream not cut in the middle

Displaying 20 results from an estimated 3000 matches similar to: "[EXT] Re: oggenc argument to make the stream not cut in the middle"

2023 Aug 23
1
[EXT] Re: oggenc argument to make the stream not cut in the middle
On Aug 22 09:38:17, u.windl at ukr.de wrote: > I wonder: What happens if you disable cURL's (default) buffering? With curl -N, I see the same behaviour. That's curl 8.1.2. What about you? I still can't see the original problem. Jan > -----Original Message----- > From: Vorbis <vorbis-bounces at xiph.org> On Behalf Of Jan Stary > Sent: Tuesday, August 22, 2023
2015 Jan 26
0
[PATCH] oggenc: do not use stack variable out of its scope of validity
Reported-by: Thomas K?ller Bug: https://bugzilla.redhat.com/1185558 --- oggenc/oggenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oggenc/oggenc.c b/oggenc/oggenc.c index ea105b2..323dedb 100644 --- a/oggenc/oggenc.c +++ b/oggenc/oggenc.c @@ -239,7 +239,7 @@ int main(int argc, char **argv) if(opt.rawmode) { - input_format raw_format = {NULL,
2000 Aug 14
0
OggEnc manpage
Attached is the manual page for OggEnc. Please proofread it and commit to CVS. Also remember to edit Makefile.in to install the man page to the appropriate location. Thanks. --- Stan Seibert .\" Process this file with .\" groff -man -Tascii oggenc.1 .\" .TH oggenc 1 "August 13, 2000" "" "Vorbis Tools" .SH NAME oggenc \- encode audio into
2013 Jul 14
0
[LLVMdev] Analysis of polly-detect overhead in oggenc
Hi, I think this should also go on the llvm-dev mailing list... On Sat, Jul 13, 2013 at 11:18 PM, Star Tan <tanmx_star at yeah.net> wrote: > > At 2013-07-14 02:30:07,"Tobias Grosser" <tobias at grosser.es> wrote: >>On 07/13/2013 10:13 AM, Star Tan wrote: >>> Hi Tobias, >> >>Hi Star, >> >>thanks for the update. I copied the polly
2003 Dec 10
1
oggenc of wav file loses one second at end of track.. why?
Hi, I recently noticed that a relativly short wav file loses the last second (truncated perhaps) when I ran it through oggenc. Originally the wav was 25 seconds, the ogg is 24 seconds. This happens at various quality levels, and I saved several copys of the file on a webserver at http://array26.rockefeller.edu/www/ogg/ If anyone wants to confirm my observations. The command lines were:
2007 Sep 18
3
oggenc size limit?
Hi, I am trying to encode a 2.1gig .wav file using oggenc with the following error message: andrew@ilium:~/Desktop$ oggenc -q 6 merge.wav -o test.ogg ERROR: Cannot open input file "merge.wav": File too large I have compiled oggenc from source: andrew@ilium:~/Desktop$ oggenc -version OggEnc v1.0.2 I am hoping that this not a limitation of oggenc, rather that I have done something a
2001 Aug 19
1
C++ style comment in vorbis-tools/oggenc/utf.8
vorbis-tools/oggenc/utf8.c:164 has a //-style comment; it should be /* ... */ so that non-gcc compilers won't barf (e.g., solaris Forte 6.1 cc). Patch included, if you're really lazy. :-) {+} Jeff Squyres {+} squyres@cse.nd.edu {+} Perpetual Obsessive Notre Dame Student Craving Utter Madness {+} "I came to ND for 4 years and ended up staying for a decade" Index: oggenc/utf8.c
2015 Feb 19
0
[PATCH] oggenc: validate count of channels in the header
... in order to prevent a division by zero (CVE-2014-9638) and integer overflow (CVE-2014-9639). Bug: https://trac.xiph.org/ticket/2136 Bug: https://trac.xiph.org/ticket/2137 --- oggenc/audio.c | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/oggenc/audio.c b/oggenc/audio.c index 477da8c..1167f1b 100644 --- a/oggenc/audio.c +++ b/oggenc/audio.c @@ -13,6
2001 Sep 03
2
OggEnc help file
---------- > Van: ORK <korsmo@solungen.hm.no> > Aan: vorbis@xiph.org > Onderwerp: [vorbis] OggEnc help file > Datum: maandag 3 september 2001 18:21 > > Somebody asked how to use OggEnc a while ago. > > OggEnc v0.8 (libvorbis rc2) > (c) 2001 Michael Smith <msmith@labyrinth.net.au) > > Usage: oggenc [options] input.wav [...] LOL! --- >8 ---- List
2003 Mar 24
2
oggenc crashes on WAV input (with q > 4.99)
Hi all, I've got a strange problem. I was just encoding a new CD I bought a couple of days ago (Muse - Hullabaloo Soundtrack) when I ran into a strange bug. After ripping track 8, CD 1 with cdparanoia under OpenBSD/alpha, I wanted to encode it with oggenc (latest version from the OpenBSD-current ports tree, (`oggenc -v` says 'OggEnc v1.0 (libvorbis 1.0)')). Here's the output :
2008 Sep 07
1
Oggenc: Bug or feature?
Hi, I just came across some behaviour in oggenc that I didn't expect and wondered if this was intentional or not. I was wanting to encode a Cd which has more than one artist, but several tracks per artist. The command I entered took the form of: oggenc -n "%n - %a - %t.ogg" -a artist1 -N 1 -t title1 -N 2 -t title2 -N 3 -t title3 -a artist2 -N 4 -t title4 -N 5 -t title5 -a
2001 Jun 18
1
oggenc.dsp
Could someone please search and replace the msvc projectfile for oggenc: "c:\src" -> "..\.." I tried to make a patchfile but I dont know if I got it right... /Erik <HR NOSHADE> <UL> <LI>TEXT/PLAIN attachment: oggenc.dsp.diff </UL> -------------- next part -------------- A non-text attachment was scrubbed... Name: oggenc.dsp.diff Type:
2015 Feb 04
0
[PATCH] oggenc: Fix crash by invalid channels in WAV files
Fix the crash of oggenc when parsing a WAV file including zero or a negative number of channels. Fixes for both CVE-2014-9638 and CVE-2014-9639 --- oggenc/audio.c | 6 ++++++ 1 file changed, 6 insertions(+) --- a/oggenc/audio.c +++ b/oggenc/audio.c @@ -455,6 +455,12 @@ int wav_open(FILE *in, oe_enc_opt *opt, format.align = READ_U16_LE(buf+12); format.samplesize =
2004 Aug 24
1
arecord/oggenc stops after 3 hours 45 minutes 47 seconds
On Aug 23, 2004, at 9:35 PM, Ralph Giles wrote: > On Mon, Aug 23, 2004 at 11:49:27AM -0700, Eric Smith wrote: > >> I've tracked the problem down to abuse of the C type size_t in >> aplay.c. So I'm pretty sure it's not a problem in oggenc. > > Hmm. Wouldn't have expected that from alsa, though if it's saving > as 'wav' you have to sort of
2003 Jul 27
1
oggenc questions
Hello everybody! Some questions concerning oggenc: 1 why is it called oggenc? (vorbisenc would make more sense) 2 Is it true, that oggenc uses only some predefined codebooks (depending on -q)? 2.1 Are they just "random" books, or were they "optimized" in any way 2.2 Is it possible, that some codebooks are stored in the header, but are never used (even in long (>3min) files)?
2001 Dec 02
2
bug report for oggenc in CVS: vorbis-tools/oggenc/encode.c
I was wondering why my CD ripping was producing short files from some tracks. A superficial examination of the code shows this piece of code in vorbis-tools/oggenc/encode.c: Line 120: /* Main encode loop - continue until end of file */ while(!eos) { [...] /* While we can get enough data from the library to analyse, one
2004 Feb 19
1
Compiling oggenc in mingw32...no FLAC support?
After pinpointing a ld switch problem in the ogg/src/Makefile file, I managed to get libogg and libvorbis to compile using mingw32. FLAC compiled flawless so the configure script in vorbis-tools detected FLAC and included support for it in oggenc. And when oggenc was compiling, I noticed it included the FLAC libraries so everything went smoothly. But the oggenc.exe made only recognises wav
2008 May 30
0
Request for Comments: multi-channel/32 bit WAV patch for oggenc
List, Some time ago, Jose A. Peirote (Tebasuna in the HA community) started a thread[1] in the HA forums to improve oggenc. He has since posted a patch[2] in Trac. I have tested it and it appears to work, though I have to confess not knowing much of multi-channel encoding (I only work with stereo). The other issues it supposedly fix seem to work, too, though I did not experiment with 4+ GB
2001 Jan 31
1
Oggenc - strange display output
Hi all: OK, I was curious to see if I could hear any of the quality loss when going from MP3 to vorbis (a friend wants to know). I used the following command: mpg123 -s 07-Dont_Let_It_Bring_You_Down.mp3 |oggenc -o down.ogg -m2 -r - The encode worked just fine, but at the end oggenc printed up the following: Done encoding file "down.ogg" File length: 0m 00.0s
2005 Apr 19
5
Rid me of this boot GUI
One of these days, RedHat might actually run me off!!!! AAAARGH!!!! Can anyone tell me how to get CentOS 4 to simply boot to the console in text mode? If I wanted a stinkin' GUI I would have installed winders! Now, my KVM and 25 foot cord is just too long to send a GUI signal across the room and I'm missing 50% of the screen.. striped vertically.. at about 1/8th inch spacing. Not