Wolfgang Stöggl
cef4ea93f6
[CUETools.Codecs.FLACCL] Fix constructor
...
The constructor parameters of Activator.CreateInstance() were updated
in CUETools.Processor\AudioReadWrite.cs as of commits 16fccfe and
e1f8906 . The parameter "settings" was added in front of path and IO,
which required an update to the order of constructor parameters in
several codecs.
- Fixes the following error message, when using FLACCL codec:
Exception: Constructor on type
'CUETools.Codecs.FLACCL.AudioEncoder' not found.
- This is a follow-up commit to 18c6c1a
- Resolves #82
2021-02-24 06:39:10 +01:00
Wolfgang Stöggl
d4dd402961
Bump copyright year to 2021
...
- Substitute occurrences of "-2020" with "-2021" using:
git grep -I -l -e '-2020' -- ':(exclude)*.bak' | xargs \
sed -b -i -e 's/-2020/-2021/g'
2021-01-14 02:18:32 +01:00
Wolfgang Stöggl
66b533c284
Bump copyright year to 2020
...
The copyright year was last time updated in 2018. There is some cleanup
involved in this commit and the next copyright year update is supposed
to be simpler (i.e. substitute "-2020").
- Substitute occurrences of "-2018" with "-2020" using:
git grep -I -l -e '-2018' -- ':(exclude)*.bak' | xargs \
sed -b -i -e 's/-2018/-2020/g'
- Update special cases:
CUEPlayer
git grep -I -l -e 'Grigory Chudov 2010' -- | xargs \
sed -b -i -e 's/Grigory Chudov 2010/2010-2020 Grigory Chudov/g'
CUERipper
git grep -I -l -e '2008-2009' -- | xargs \
sed -b -i -e 's/2008-2009/2008-2020/g'
CUETools, CUETools.FLACCL.cmd
git grep -I -l -e '2008-2010' -- ':(exclude)*FlaCuda*' | xargs \
sed -b -i -e 's/2008-2010/2008-2020/g'
git grep -I -l -e '2010-2013' -- | xargs \
sed -b -i -e 's/2010-2013/2010-2020/g'
CUETools.ChaptersToCue
git grep -I -l -e 'Grigory Chudov 2017' -- | xargs \
sed -b -i -e 's/Grigory Chudov 2017/2017-2020 Grigory Chudov/g'
CUETools.CTDB.EACPlugin
git grep -I -l -e 'Grigory Chudov 2012' -- | xargs \
sed -b -i -e 's/Grigory Chudov 2012/2012-2020 Grigory Chudov/g'
git grep -I -l -e '2011-12' -- | xargs \
sed -b -i -e 's/2011-12/2011-2020/g'
CUETools.Codecs.FLACCL
git grep -I -l -e '2009-2010' -- ':(exclude)*FlaCuda*' | xargs \
sed -b -i -e 's/2009-2010/2009-2020/g'
CUETools.eac3ui (BluTools)
git grep -I -l -e '© 2018' -- | xargs \
sed -b -i -e 's/© 2018/© 2018-2020 Grigory Chudov/g'
CUETools.Flake
git grep -I -l -e ' 2009-2014 Gr' -- | xargs \
sed -b -i -e 's/ 2009-2014 Gr/ 2009-2020 Gr/g'
CUETools.Processor
git grep -I -l -e ' 2008-2013 Gr' -- | xargs \
sed -b -i -e 's/ 2008-2013 Gr/ 2008-2020 Gr/g'
CUETools.Ripper.Console
git grep -I -l -e ' 2008-10 Gr' -- | xargs \
sed -b -i -e 's/ 2008-10 Gr/ 2008-2020 Gr/g'
CUETools.Ripper.Console, CUETools.Ripper.SCSI
git grep -I -l -e ' 2008-13 Gr' -- | xargs \
sed -b -i -e 's/ 2008-13 Gr/ 2008-2020 Gr/g'
Single year entries: 2008, 2009, 2010, 2011, 2017, 2018
git grep -I -l -e ' 2008 Gr' -- | xargs \
sed -b -i -e 's/ 2008 Gr/ 2008-2020 Gr/g'
git grep -I -l -e ' 2009 Gr' -- ':(exclude)*FlaCuda*' | xargs \
sed -b -i -e 's/ 2009 Gr/ 2009-2020 Gr/g'
git grep -I -l -e ' 2010 Gr' -- | xargs \
sed -b -i -e 's/ 2010 Gr/ 2010-2020 Gr/g'
git grep -I -l -e ' 2011 Gr' -- | xargs \
sed -b -i -e 's/ 2011 Gr/ 2011-2020 Gr/g'
git grep -I -l -e ' 2017 Gr' -- | xargs \
sed -b -i -e 's/ 2017 Gr/ 2017-2020 Gr/g'
git grep -I -l -e ' 2018 Gr' -- | xargs \
sed -b -i -e 's/ 2018 Gr/ 2018-2020 Gr/g'
Fix typo in copyright year of CUETools.Codecs.WMA/AudioDecoder.cs:
Copyright (c) 20139 Grigory Chudov
git grep -I -lw -e '20139' -- | xargs \
sed -b -i -e 's/20139/2013-2020/g'
2020-02-04 13:35:53 +01:00
Wolfgang Stöggl
6d01dc106d
CUETools.FLACL.cmd: print Hz after SampleRate
...
- Use Hz instead of kHz
- Fixes: https://github.com/gchudov/cuetools.net/issues/17
2019-04-16 06:32:47 +02:00
Grigory Chudov
320e75d709
Removed AudioEncoderSettings/AudioDecoderSettings classes, all of their functionality is now in IAudioEncoderSettings/IAudioDecoderSettings interfaces.
2018-03-25 17:24:27 -04:00
Grigory Chudov
ca8bb2fff6
Code cleanup; Reader classes renamed to Decoders, Writers to Encoders, every Decoder must have a corresponding Settings class now just like Encoders. UserDefinedEncoders renamed to CommandLineEncoders, etc.
2018-03-23 20:26:28 -04:00
Grigory Chudov
16fccfe5c9
Code cleanup; Reader classes renamed to Decoders, Writers to Encoders, every Decoder must have a corresponding Settings class now just like Encoders. UserDefinedEncoders renamed to CommandLineEncoders, etc.
2018-03-23 19:26:26 -04:00
Grigory Chudov
929b7de944
Updated the build system, now using .NET Framework v4.0 for most things
2018-03-11 17:07:48 -04:00
Grigory Chudov
132bd9a6f7
FLACCL, Flake & Converter: support for --ignore-chunk-sizes
2013-07-07 21:10:57 -04:00
Grigory Chudov
3c227b8710
FLACCL: Display OpenCL driver version
2013-06-26 20:19:17 -04:00
Grigory Chudov
5c2ffab0f9
FLACCL: Display platform and device used
2013-06-26 00:54:53 -04:00
Grigory Chudov
bcb42dd531
Simplify codec settings. Check for non-Subset FLAC modes.
2013-06-18 20:45:53 -04:00
Grigory Chudov
21a1628018
FLACCL: fix problem with 192kHz audio
2013-06-16 15:46:50 -04:00
Grigory Chudov
dd57626b4e
CUETools.Flake/FLACCL: --lax command line setting
2013-06-04 20:44:13 -04:00
Grigory Chudov
fc74fc5ad5
Flake/FLACCL cmd line tools were forcing user to specify compression level,
...
because default comprssion level was not set properly in settings constructor.
2013-06-02 18:22:07 -04:00
Grigory Chudov
8dd7cfe136
CUETools flac and alac encoders write 'CUETools 2.1.5' in "tool" metadata
...
instad of "Flake#0.1" etc
2013-04-28 14:33:48 -04:00
Grigory Chudov
f7fee0139c
More graceful handling of Ctrl-C by FLACCL
2013-04-07 22:05:21 -04:00
Grigory Chudov
9670c6c891
Refactoring codecs infrastructure:
...
AudioWriterSettings passed to IAdioDest constructors now
AudioWriterSettings now includes AudioPCMConfig
2013-04-07 20:41:58 -04:00
Grigory Chudov
b44e482dee
Refactoring: moved Padding and BlockSize from IAudioDest to AudioEncoderSettings;
2013-04-04 22:07:15 -04:00
Grigory Chudov
9dd4897acc
Cleanup IAudioDest; CompressionLevel is now part of AudioEncoderSettings.
...
FLAC encoders no longer offer non-subset compression levels by default.
2013-04-01 23:03:22 -04:00
chudov
7f07eff0a5
Version 2.0.4
...
* Better handling of metadata for playstation type CDs
* HTOA filename now starts with 00 instead of 01.00
* CUETools: local database: when the folder is already in database, you can now refresh it instead of removing/adding it
* CUETools: local database: added sort category "by CTDB confidence"
* CUETools: local database: new menu item: locate in explorer
* CUERipper: Option to disable gaps detection
* CUERipper: now correctly submits CDs with data tracks to Freedb
* EAC plugin: now fixes codepage for freedb entries
2012-04-08 23:54:36 +00:00
chudov
26328d99be
24-bit/multichannel support: optimizations
2010-12-11 00:22:15 +00:00
chudov
6585ea2001
24-bit/multichannel support
2010-12-07 22:52:34 +00:00
chudov
6783bba2e9
optimizations
2010-12-02 15:58:41 +00:00
chudov
2930731db8
misc
2010-11-25 09:11:46 +00:00
chudov
76762f2e16
optimizations
2010-11-18 06:06:12 +00:00
chudov
050140aa7f
experimenting with rice encoding on GPU
2010-11-14 19:09:09 +00:00
chudov
f619c82ef3
CPU mode + GPU optimizations
2010-10-25 04:50:36 +00:00
chudov
c10a62b17f
tidying up
2010-10-23 18:29:42 +00:00
chudov
4a47615f7c
opencl flac encoder
2010-10-15 19:56:36 +00:00
chudov
badfb2fec8
opencl flac encoder
2010-10-11 08:46:36 +00:00
chudov
b93ff8b82f
opencl flac encoder
2010-10-06 11:15:57 +00:00