Search Criteria
Package Details: dff2dsf 1.2.2-1
Git Clone URL: | https://aur.archlinux.org/dff2dsf.git (read-only, click to copy) |
---|---|
Package Base: | dff2dsf |
Description: | Signalyst DFF to DSF command line conversion utility |
Upstream URL: | http://www.signalyst.com/professional.html |
Keywords: | audio converter dsd |
Licenses: | |
Submitter: | blackhole |
Maintainer: | blackhole |
Last Packager: | blackhole |
Votes: | 4 |
Popularity: | 0.000000 |
First Submitted: | 2014-10-12 22:42 |
Last Updated: | 2015-06-08 20:52 |
Latest Comments
blackhole commented on 2014-11-19 15:02
If you wnat to convert an entire directory open a terminal in that directory ed execute the following bash file dff2dsf.sh
#!/bin/bash
for i in *.dff ; do
[[ -f "$i" ]] || continue
dff2dsf "$i" "${i%.dff}.dsf"
done
blackhole commented on 2014-10-12 22:46
This package can convert DSD audio files from .dff to .dsf
See
http://dsd-guide.com/faq/what-difference-between-dsd-dsf-dff-files
Usage:
dff2dsf <infile> <outfile>