similar to: Flac -ts differs from flac -t

Displaying 20 results from an estimated 400 matches similar to: "Flac -ts differs from flac -t"

2013 Jan 10
1
Fixing corrupt flac files
Here you are: soa2ii at thor /mnt/files/music/Slime/Alle gegen Alle $ metaflac --list 02\ St?rtebecker.flac METADATA block #0 type: 0 (STREAMINFO) is last: false length: 34 minimum blocksize: 4608 samples maximum blocksize: 4608 samples minimum framesize: 14 bytes maximum framesize: 15637 bytes sample_rate: 44100 Hz channels: 2 bits-per-sample: 16 total samples: 5857656
2023 Jun 08
0
The flacdiff and flactimer utils
Hi all, In an attempt to clean up the FLAC repository, I was trying to work out the importance of the flactimer and flacdiff utils. I think the flactimer util can be removed, but I don't fully understand the use of the flacdiff util. It seems I can't get it to work. I always get something like this: ./flacdiff file1.flac file2.flac got diff offset = 17 get error
2013 Jan 10
4
Fixing corrupt flac files
So, let's provide some information then :-) ---------------------------------------------------------------------------------------------- soa2ii at thor /mnt/files/music/Slime/Alle gegen Alle $ flac -aF 02\ St?rtebecker.flac flac 1.2.1, Copyright (C) 2000,2001,2002,2003,2004,2005,2006,2007 Josh Coalson flac comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome
2010 Jul 14
1
[patch] Decoding non 8/16/24 bps audio to raw format should fail cleanly
When decoding a FLAC file with bits per sample that is not a multiple of 8 and outputting in raw format, the decoder gets as far as the write callback before realising that it doesn't know how to write the data. It then fails with an unhelpful message (or trips an assert() in debug mode). The attached patch performs the check earlier, and gives a more helpful error message. Kind
2004 Sep 10
0
Problem in FLAC__stream_decoder_process_metadata
--- Ingo Ralf Blum <ingoralfblum@gmx.de> wrote: > I have a problem when I try to open a file, which is not a FLAC file. > When I > open a non-flac file with the stream decoder API, one of the first > things called > is FLAC__stream_decoder_process_metadata, which itself calls > stream_decoder_find_metadata_. Unfortunately the non-flac file > contains some > content,
2004 Sep 10
2
Problem in FLAC__stream_decoder_process_metadata
Hi, I have a problem when I try to open a file, which is not a FLAC file. When I open a non-flac file with the stream decoder API, one of the first things called is FLAC__stream_decoder_process_metadata, which itself calls stream_decoder_find_metadata_. Unfortunately the non-flac file contains some content, which leads to the state set to FLAC__STREAM_DECODER_READ_FRAME. However in
2012 Mar 25
0
[LLVMdev] [PATCH] add reverse colors to raw_ostream
I'm working on a patch for clang where diagnostics print out unprintable characters vi style. I'm looking for someone familiar with llvm's raw_ostream to review the portion that enables reversed colors. Thanks, Seth Begin forwarded message: > From: Eli Friedman <eli.friedman at gmail.com> > Subject: Re: [cfe-commits] r148389 - in /cfe/trunk:
2008 Dec 10
0
libFLAC header checking
On 06.11.2008 22:16, LRN wrote: > In stream_decoder.c function find_metadata_() checks whether a file is > valid or not. There are 4 cases it recognizes: > 1) file begins with 'fLaC' > 2) file begins with ID3 (skipped), followed by 'fLaC' > 3) file may begin with 11111111 111110?? sync code (or 11111111111110, > depends on endianess i suppose). That is - a raw
2004 Sep 10
2
possible bug in process_metadata()
Hello! I'm using the seekable stream decoder API of libFLAC 1.02 and I think that I found a possible bug in process_metadata(). The problem is as follows: I have a file which isn't a FLAC sample (it's actually an ACE archive) where process_metadata() returns TRUE. And even worse, the metadataCallback() is never called (which means process_metadata() succeeds, although no metadata is
1999 Oct 23
0
[slackware-security] CA-99-13: wu-ftpd upgrade available (fwd)
---------- Forwarded message ---------- Date: Fri, 22 Oct 1999 20:30:27 -0700 (PDT) From: David Cantrell <david@slackware.com> To: slackware-security@slackware.com Subject: CA-99-13: wu-ftpd upgrade available ATTENTION: All users of Slackware 4.0 and Slackware-current REGARDING: CERT Advisory CA-99-13 Multiple Vulnerabilities in WU-FTPD The recent CERT advisory reporting multiple
1999 Oct 24
0
[slackware-security] CA-99-13: minimal fix for Slackware 3.5 through 4.0 (fwd)
---------- Forwarded message ---------- Date: Sat, 23 Oct 1999 22:11:13 -0700 (PDT) From: David Cantrell <david@slackware.com> To: slackware-security@slackware.com Subject: CA-99-13: minimal fix for Slackware 3.5 through 4.0 Regarding the recent CERT advisory about WU-FTPD: An alternative minimal fix is available for Slackware versions 3.5, 3.6, 3.9, and 4.0. Users can download this and
2008 Nov 06
2
libFLAC header checking
In stream_decoder.c function find_metadata_() checks whether a file is valid or not. There are 4 cases it recognizes: 1) file begins with 'fLaC' 2) file begins with ID3 (skipped), followed by 'fLaC' 3) file may begin with 11111111 111110?? sync code (or 11111111111110, depends on endianess i suppose). That is - a raw file with FLAC frames, without header (right?). 4) file begins
2018 Jan 10
0
Windows 98 cannot connect to Samba 3.6.23-45el6 after upgrade from 3.0.33-3.41.el5
Solved! That was painful. First, Samba 3.6.23-45el6 on CentOS6 doesn't start nmbd when samba starts. Those are different services now. Make sure that's enabled and stars. Also, add to the smb.conf lanman auth = yes client lanman auth = yes client ntlmv2 auth = no ;client lanman auth son't work without this. not sure why. Restart samba and you must use smbpasswd -a
2016 Jul 10
1
[PATCH] set decoding status if write callback failed.
Open src/flac/decode.c, find write_callback() function and add return FLAC__STREAM_DECODER_WRITE_STATUS_ABORT; to the beginning of the function. Decoding will fail with the following message: test.flac: ERROR while decoding data state = FLAC__STREAM_DECODER_READ_FRAME As you can see, decoder state isn't quite correct. One of the ways to fix this is in the attached
2014 Dec 15
1
[PATCH] src/libFLAC/stream_decoder.c : Rework fix for seeking bug.
To avoid crash caused by an unbound LPC decoding when predictor order is larger than blocksize, the sanity check needs to be moved to the subframe decoding functions. --- src/libFLAC/stream_decoder.c | 30 ++++++++++++------------------ 1 file changed, 12 insertions(+), 18 deletions(-) diff --git a/src/libFLAC/stream_decoder.c b/src/libFLAC/stream_decoder.c index d13b23b..211b4db 100644 ---
2014 Feb 13
3
[LLVMdev] cmake/ninja build failing
Well, I updated to cmake 2.8.12.2 but the result of changing that COMPILE_FLAGS to COMPILE_OPTIONS is that quotes are applied incorrectly: quotes are added surrounding the entire set of flags rather than around each individual item in the list. Obviously the build doesn't work (with the compiler looking for files named " -m64 ... ") but checking the relevant build command in
2017 Dec 11
0
Windows 98 cannot connect to Samba 3.6.23-45el6 after upgrade from 3.0.33-3.41.el5
On Mon, 11 Dec 2017 16:32:06 -0500 Justin Cantrell via samba <samba at lists.samba.org> wrote: > On 12/11/2017 04:21 PM, Rowland Penny via samba wrote: > > On Mon, 11 Dec 2017 15:49:51 -0500 > > Justin Cantrell via samba <samba at lists.samba.org> wrote: > > > >> I upgraded a server from CentOS 5 to CentOS 6 and migrated the > >> samba users,
2011 Sep 28
0
FLAC::Encoder::Stream == "FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA"
I'm using flac-1.2.1 and visual studio 2010 on windows xp sp3 and I want to compress raw CDDA with the stream encoder to a file. But I just can't get the flac encoder to work, the encoder always returns an error enc.get_state() == "FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA" get_verify_decoder_state() == "FLAC__STREAM_DECODER_READ_FRAME" this is the code I
2017 Dec 12
2
Windows 98 cannot connect to Samba 3.6.23-45el6 after upgrade from 3.0.33-3.41.el5
-----Original Message----- From: Rowland Penny via samba Sent: Monday, December 11, 2017 4:54 PM To: samba at lists.samba.org Subject: Re: [Samba] Windows 98 cannot connect to Samba 3.6.23-45el6 after upgrade from 3.0.33-3.41.el5 On Mon, 11 Dec 2017 16:32:06 -0500 Justin Cantrell via samba <samba at lists.samba.org> wrote: > On 12/11/2017 04:21 PM, Rowland Penny via samba wrote: >
2010 Dec 30
0
Bivariate weighted fit methods of Williamson-York in R?
Hello everyone, I've been looking for an R function to calculate bivariate weighted fits of my data set, preferably using methods of Williamson-York. Improvements offered by using bivariate weighted fitting compared to conventional linear least-square fitting was recently described in a paper by Cantrell (http://www.atmos-chem-phys.org/8/5477/2008/acp-8-5477-2008.pdf), in which the methods