所以有件事..。我曾经在Windows上听过大量的SACD文件集合。
许多专辑都是为世界各地的视听爱好者发行的SACD。Imho 90%的SACD专辑被掌握得远远好于原来的CD。这就是SACD背后的全部原因。
我之所以在我的PC上使用DAC (带有本地DSD支持)来听它们,是因为这些SACD非常昂贵。我在俄罗斯有个朋友,他把这些SACD的ISO文件发给我。
在Windows上,我可以轻松地使用Foobar2000和一些插件。在Ubuntu上,我看不到其他的选择。
有没有办法在Ubuntu上收听这些SACD iso文件?我不希望将DSD内容转换为flac。我想使用我的DenonDA-300的本地DSD功能。
发布于 2019-03-23 23:59:13
发布于 2020-03-15 22:19:10
我建议使用sacd
:https://github.com/Sound-Linux-More/sacd。
通过以下方式安装:
git clone https://github.com/Sound-Linux-More/sacd
cd sacd
make
然后使用它作为文档通过它的内置帮助,即./sacd --help
:
Usage: sacd -i infile [-o outdir] [options]
-i, --infile : Specify the input file (*.iso, *.dsf, *.dff)
-o, --outdir : The folder to write the WAVE files to. If you omit
this, the files will be placed in the input file's
directory
-c, --stdout : Stdout output (for pipe), sample:
sacd -i file.dsf -c | play -
-r, --rate : The output samplerate.
Valid rates are: 88200, 96000, 176400 and 192000.
If you omit this, 88.2KHz will be used.
-s, --stereo : Only extract the 2-channel area if it exists.
If you omit this, the multichannel area will have priority.
-p, --progress : Display progress to new lines. Use this if you intend
to parse the output through a script. This option only
lists either one progress percentage per line, or one
status/error message.
-d, --details : Show detailed information about the input
-h, --help : Show this help message
发布于 2019-03-26 06:13:01
尽管MPlayer和FFmpeg都不愿播放一个iso文件的DSD文件,但一旦安装了一个iso并可以选择单个文件,它看起来都将支持DSD文件(或一组文件)的“开箱即用”的回放。
在我自己的系统中,我下载了以下带有wget的免费DSD示例文件:
wget http://www.lindberg.no/hires/test/2L-145/2L-45_stereo_01_DSF_2822k_1b.dsf
命令行MPlayer将使用ffdsdlsbfp
播放音频轨道,使用ffmjpeg
播放嵌入在该文件中的小型视频/图形。我为这个文件使用的命令是:
mplayer -xy 400 -vo xv 2L-45_stereo_01_DSF_2822k_1b.dsf
声音播放很好,但图像看起来有点普通,我还没有进一步试验其他文件,看看这是否是一个普遍的问题。下面是MPLayer的截图,请记住,如果你想要一个gui,SMPlayer会达到同样的效果:
我有点困惑,为什么MPlayer不会直接从我创建的这个文件中播放,它通常会这样做,但这似乎是目前的状态.
https://askubuntu.com/questions/1128159
复制相似问题