-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest_all_44k_mults.ps1
More file actions
26 lines (22 loc) · 1.54 KB
/
Copy pathtest_all_44k_mults.ps1
File metadata and controls
26 lines (22 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Ensure dsd2dxd is installed to cargo bin
cargo install --path .
# Play back various resample rates from different test inputs
dsd2dxd -r 88200 .\test\1kHz_stereo_p.dsf | ffplay -f s24le -ar 88200 -ch_layout stereo -i -
dsd2dxd -r 176400 .\test\1kHz_stereo_p.dsf | ffplay -f s24le -ar 176400 -ch_layout stereo -i -
dsd2dxd -r 352800 .\test\1kHz_stereo_p.dsf | ffplay -f s24le -ar 352800 -ch_layout stereo -i -
dsd2dxd -r 88200 .\test\1kHz_stereo_128.dsf | ffplay -f s24le -ar 88200 -ch_layout stereo -i -
dsd2dxd -r 176400 .\test\1kHz_stereo_128.dsf | ffplay -f s24le -ar 176400 -ch_layout stereo -i -
dsd2dxd -r 352800 .\test\1kHz_stereo_128.dsf | ffplay -f s24le -ar 352800 -ch_layout stereo -i -
dsd2dxd -r 88200 .\test\1kHz_stereo_256.dsf | ffplay -f s24le -ar 88200 -ch_layout stereo -i -
dsd2dxd -r 176400 .\test\1kHz_stereo_256.dsf | ffplay -f s24le -ar 176400 -ch_layout stereo -i -
dsd2dxd -r 352800 .\test\1kHz_stereo_256.dsf | ffplay -f s24le -ar 352800 -ch_layout stereo -i -
# Run same conversions discarding stdout (PowerShell: redirect to $null)
dsd2dxd -r 88200 .\test\1kHz_stereo_p.dsf > $null
dsd2dxd -r 176400 .\test\1kHz_stereo_p.dsf > $null
dsd2dxd -r 352800 .\test\1kHz_stereo_p.dsf > $null
dsd2dxd -r 88200 .\test\1kHz_stereo_128.dsf > $null
dsd2dxd -r 176400 .\test\1kHz_stereo_128.dsf > $null
dsd2dxd -r 352800 .\test\1kHz_stereo_128.dsf > $null
dsd2dxd -r 88200 .\test\1kHz_stereo_256.dsf > $null
dsd2dxd -r 176400 .\test\1kHz_stereo_256.dsf > $null
dsd2dxd -r 352800 .\test\1kHz_stereo_256.dsf > $null