similar to: output format when decoding multiple files

Displaying 20 results from an estimated 20000 matches similar to: "output format when decoding multiple files"

2004 Sep 13
1
Archiving CDs w/ Flac on Linux (and subsequent re-encoding)
--- Eric Sandeen <sandeen@sandeen.net> wrote: > *I'm not sure why flac -d 1.flac 2.flac 3.flac outputs sequential > wavs > rather than one big wav; is this intentional and/or needed? I > suppose > the "one big wav" approach would require flac to look at all input > files > to write the proper wav header at the front, but that should be > do-able...?
2004 Sep 11
5
Archiving CDs w/ Flac on Linux (and subsequent re-encoding)
This must be possible; not sure how to do it yet. :) After facing the thought of going through my cd collection for a 3rd time for re-encoding, it occurred to me that I should just flac the whole CD and add a cue sheet, and then back up to DVDs. That way -next- time I need to re-encode to any format, I can handle ~1/20th the discs, compared to my whole cd collection. :) Wondering if
2005 Jul 11
2
[BUG] --sector-align zero padding is not entirely zero
Hi, A user at the www.thetradersden.org website reported a difference when fixing "sector boundary errors" in CD-quality WAV files with shntool and flac. As as result of investigating this, I think I've found a bug in the zero-ising of the buffer used to zero-pad the last file when encoding with the --sector-align option. My test consisted of the creation of four
2007 Sep 29
1
Re: anyone using flac --sector-align?
Dat Head wrote: > I use it all the time for wav to flac conversions for CDR burning (doesn't > everybody?!) or maybe i use it with shntool before encoding to flac, I'm pretty sure (don't have the code and couldn't read it if I had it) that shntool's "fix" module doesn't use flac's --sector-align option but has its own routines. For one thing,
2008 Feb 08
2
how to get flac fingerprint from a wav?
Great info. I found some descriptions of st5 (md5 fp) and ffp, where I assume that "fp" is just a Taper abbreviation for "fingerprint" - or signature as it's called in the flac header. However, I could not find these utilities or source code. What I found looked like instructions for a gui-based program. I think it would be easier to support Mac if st5 were
2007 Sep 29
3
anyone using flac --sector-align?
is anyone using the --sector-align option of flac, or flac frontend, or shntool? that option actually complicates the flac code a lot and I would like to take it out if possible. it really belongs in a higher level encoding or burning tool. if you are using it, let me know which tool you use it with and if it's with wave, aiff, or raw files.
2004 Sep 10
4
command-line flac tool to report song length?
I've got a bunch of flac files and need to report their length. With MP3s, you use `mp3info -x $filename` But is there a way to find out the length (minutes:seconds or just seconds) of a flac audio file, without converting it to WAV first? Thanks! -- Derek Sivers, CD Baby, Hostbaby http://www.cdbaby.com <-- best new independent music http://www.hostbaby.com <-- web hosting for
2008 Feb 07
4
how to get flac fingerprint from a wav?
In windows command line: I have a wav file and would like to see what the flac fingerprint would be. To do this I run flac to encode the wav file and write the flac file to the hard disk. I then run metaflac to read the flac file and display the fingerprint. Is there an existing way or other utility to do this without generating the flac file on the hard disk. I would think it could be quicker
2004 Aug 06
1
Need a command-line splicer of audio files for Linux
sox works great. to splice out a 10-minute segment starting 12m34s into a .wav file: sox infile.wav outfile.wav trim 12:34 10:00 to splice two segments together, well: cat seg1.wav seg2.wav > joined.wav <p>samurai.fm wrote: > SOX might work? > > -----Original Message----- > From: owner-icecast@xiph.org [mailto:owner-icecast@xiph.org] On Behalf Of > Mailing List Receiver
2008 Feb 08
1
how to get flac fingerprint from a wav?
Thanks for all the responses to my question. I think I can use shntool hash option for my project I did not find in the shntool documentation or flac documentation that the hash or st5 always would match the flac fingerprint. But at least in a couple tests I did they matched. And I found some more comments around the internet indicating they were the same. -----Original Message----- From:
2004 Sep 13
1
Archiving CDs w/ Flac on Linux (and subsequent re-encoding)
On Mon, 13 Sep 2004, Eric Sandeen wrote: > Well given that I fed cdrdao the toc file that it originally extracted, > they should be, right? Do you mean check that the cue points fall at > the exact same spot in the performace, I guess? Yes. > As far as I can tell, they do, although not sure how to check that > exactly... Just listen, and watch the counter on the CD-player. It
2004 Sep 10
2
Smarter flac / samba VFS module possible?
Hi all - Hope this isn't too OT - I've been playing with the file extention mapper VFS module for samba (http://file-ext-map.sourceforge.net/) to play flac files on my Audiotron. The above module takes any *.flac file and presents it as a *.wav to the client, and decodes on the fly when the file is read. It seems to work pretty well, but I often get the first second or so of a song
2004 Sep 10
1
Re: Header Ideas
My comments: ;) >hmm, I'm thinking we could >spec out an ETREE metadata >block that you could use. Yes, I think this is a good idea. I'd like to incorporate this a s much as possible as the "FLAC Standard" if it's OK with you guys, since ideally FLAC will be the etree.org format of choice, replacing Shorten. >> Filesize compressed >> >this is
2004 Sep 10
2
new cmd-line, decoding troubles
I tried to use new command-line behavior. When i do 'flac -d -c -fb foo.flac', it gives to stdout wav data instead of big endian raw data as i expected, but 'flac -d -fr -fb -c' works fine. I think -d -fb should implied -fr. And when i give it multiple files like 'flac -d -c -fr -fb foo1.flac foo2.flac', it decode only first file. -- Miroslav Lichvar
2008 Sep 16
1
boxplot labelling levels
I want the levels to appear in the boxplot instead of 1 and 2. What do I need to do for that? Here is the dummy code. x<-runif(100,50,80) x1<-runif(100,70,80) True.positives<-c(x,x1) splice<-factor(c(rep("Human.AA.200",100),rep("Human.AA.100",100))) splice<-factor(splice,levels=c("Human.AA.200","Human.AA.100"))
2009 Jun 09
3
Splicing factors without losing levels
Hi list! An operation that I often need is splicing two vectors: > splice(1:3, 4:6) [1] 1 4 2 5 3 6 For numeric vectors I use this hack: splice <- function(x, y) { xy <- cbind(x, y) xy <- t(xy) dim(xy) <- length(x) * 2 return(xy) } So far, so good (?). But I also need splicing for factors and I tried this: splice <- function(x, y) { xy <-
2004 Sep 10
1
[Flac-users] stripping chunks and exit code
--- "David W. Tamkin" <dattier@panix.com> wrote: > If another program invokes flac.exe to encode a WAV file that has an > extra chunk or sub-chunk that FLAC strips it out during encoding, > would > that make flac.exe report a non-zero error level back to the program > that called it? No. It's not considered an error to skip non-audio sub-chunks. Josh
2009 Oct 06
2
1.43 GB FLAC with 8-Hour Audio Inside... Decoding?
Ok, so here's the deal... I've been having a lot of trouble sleeping, so I've done some research and discovered this program called "Hemi-Sync". I decided to torrent it from the Pirate Bay to try it out before spending my money. What I torrented worked incredibly, so bought it, then torrented another Hemi-Sync program: Lucid Dreaming. It's a DVD-Audio program. What I
2007 Jun 13
2
Formatted Data File Question for Clustering -Quickie Project
I am trying to learn how to format Ascii data files for scan or read into R. Precisely for a quickie project, I found some code (at end of this email) to do exactly what I need: To cluster and graph a dendrogram from package (stats). I am stuck on how to format a text file to run the script. I looked at the dataset USArrests (which would be replaced by my data and labels) using UltraEdit. That
2004 Sep 12
3
Archiving CDs w/ Flac on Linux (and subsequent re-encoding)
Josh Coalson wrote: > --- Eric Sandeen <sandeen@sandeen.net> wrote: > >>1) how to generate a cue sheet to store in the flac file (on linux?) >> I've seen cddb2cue, is this a decent way? or cdrdao can generate >> a toc file, then convert that to a cue sheet.... > > > I think whatever provides cdrdao also provides toc2cue which > will convert.