dtas 0.15.0 → 0.18.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/.gitignore +1 -1
- data/Documentation/.gitignore +1 -1
- data/Documentation/GNUmakefile +2 -2
- data/Documentation/dtas-archive.pod +2 -2
- data/Documentation/dtas-console.pod +2 -2
- data/Documentation/dtas-ctl.pod +2 -2
- data/Documentation/dtas-cueedit.pod +2 -2
- data/Documentation/dtas-enq.pod +2 -2
- data/Documentation/dtas-env.pod +3 -3
- data/Documentation/dtas-msinkctl.pod +2 -2
- data/Documentation/dtas-player.pod +2 -2
- data/Documentation/dtas-player_effects.pod +2 -2
- data/Documentation/dtas-player_protocol.pod +4 -4
- data/Documentation/dtas-player_sink_examples.pod +2 -2
- data/Documentation/dtas-sinkedit.pod +4 -4
- data/Documentation/dtas-sourceedit.pod +4 -4
- data/Documentation/dtas-splitfx.pod +7 -1
- data/Documentation/dtas-tl.pod +4 -4
- data/Documentation/dtas-xdelay.pod +2 -2
- data/Documentation/update-footer.rb +2 -2
- data/GIT-VERSION-GEN +2 -2
- data/GNUmakefile +1 -1
- data/HACKING +2 -2
- data/INSTALL +13 -24
- data/README +14 -8
- data/Rakefile +2 -2
- data/TODO +3 -1
- data/bin/dtas-archive +1 -1
- data/bin/dtas-console +19 -23
- data/bin/dtas-ctl +1 -1
- data/bin/dtas-cueedit +1 -1
- data/bin/dtas-enq +1 -1
- data/bin/dtas-mlib +1 -1
- data/bin/dtas-msinkctl +1 -1
- data/bin/dtas-partstats +1 -1
- data/bin/dtas-player +1 -1
- data/bin/dtas-readahead +4 -4
- data/bin/dtas-sinkedit +1 -1
- data/bin/dtas-sourceedit +1 -1
- data/bin/dtas-splitfx +8 -1
- data/bin/dtas-tl +1 -1
- data/bin/dtas-xdelay +1 -1
- data/dtas-linux.gemspec +5 -6
- data/dtas-mpris.gemspec +2 -2
- data/dtas.gemspec +2 -2
- data/examples/zsh-completion/README +3 -0
- data/examples/zsh-completion/_dtas-archive +16 -0
- data/examples/zsh-completion/_dtas-ctl +114 -0
- data/examples/zsh-completion/_dtas-cueedit +7 -0
- data/examples/zsh-completion/_dtas-enq +7 -0
- data/examples/zsh-completion/_dtas-mlib +29 -0
- data/examples/zsh-completion/_dtas-msinkctl +8 -0
- data/examples/zsh-completion/_dtas-partstats +7 -0
- data/examples/zsh-completion/_dtas-sinkedit +11 -0
- data/examples/zsh-completion/_dtas-sourceedit +11 -0
- data/examples/zsh-completion/_dtas-splitfx +17 -0
- data/examples/zsh-completion/_dtas-tl +52 -0
- data/examples/zsh-completion/_dtas-xdelay +17 -0
- data/lib/dtas.rb +12 -2
- data/lib/dtas/buffer.rb +10 -5
- data/lib/dtas/buffer/fiddle_splice.rb +216 -0
- data/lib/dtas/buffer/read_write.rb +3 -3
- data/lib/dtas/buffer/splice.rb +16 -10
- data/lib/dtas/command.rb +1 -1
- data/lib/dtas/compat_onenine.rb +1 -1
- data/lib/dtas/cue_index.rb +1 -1
- data/lib/dtas/disclaimer.rb +1 -1
- data/lib/dtas/edit_client.rb +1 -1
- data/lib/dtas/encoding.rb +57 -0
- data/lib/dtas/fadefx.rb +1 -1
- data/lib/dtas/format.rb +1 -1
- data/lib/dtas/mcache.rb +1 -1
- data/lib/dtas/mlib.rb +38 -31
- data/lib/dtas/mlib/migrations/0001_initial.rb +1 -1
- data/lib/dtas/nonblock.rb +1 -1
- data/lib/dtas/parse_freq.rb +1 -1
- data/lib/dtas/parse_time.rb +1 -1
- data/lib/dtas/partstats.rb +1 -1
- data/lib/dtas/pipe.rb +16 -9
- data/lib/dtas/pipeline.rb +75 -0
- data/lib/dtas/player.rb +3 -3
- data/lib/dtas/player/client_handler.rb +23 -15
- data/lib/dtas/process.rb +1 -1
- data/lib/dtas/replaygain.rb +1 -1
- data/lib/dtas/rg_state.rb +1 -1
- data/lib/dtas/serialize.rb +1 -1
- data/lib/dtas/sigevent.rb +6 -3
- data/lib/dtas/sigevent/efd.rb +3 -1
- data/lib/dtas/sigevent/fiddle_efd.rb +38 -0
- data/lib/dtas/sigevent/pipe.rb +2 -2
- data/lib/dtas/sink.rb +1 -1
- data/lib/dtas/source.rb +1 -1
- data/lib/dtas/source/av.rb +1 -1
- data/lib/dtas/source/av_ff_common.rb +1 -1
- data/lib/dtas/source/cmd.rb +1 -1
- data/lib/dtas/source/common.rb +1 -1
- data/lib/dtas/source/ff.rb +1 -1
- data/lib/dtas/source/file.rb +1 -1
- data/lib/dtas/source/mp3gain.rb +1 -1
- data/lib/dtas/source/sox.rb +4 -2
- data/lib/dtas/source/splitfx.rb +1 -1
- data/lib/dtas/spawn_fix.rb +1 -1
- data/lib/dtas/splitfx.rb +6 -3
- data/lib/dtas/state_file.rb +1 -1
- data/lib/dtas/tfx.rb +1 -1
- data/lib/dtas/track.rb +1 -1
- data/lib/dtas/tracklist.rb +1 -1
- data/lib/dtas/unix_accepted.rb +1 -1
- data/lib/dtas/unix_client.rb +1 -1
- data/lib/dtas/unix_server.rb +1 -1
- data/lib/dtas/util.rb +1 -1
- data/lib/dtas/watchable.rb +60 -55
- data/lib/dtas/watchable/fiddle_ino.rb +78 -0
- data/lib/dtas/watchable/inotify.rb +13 -0
- data/lib/dtas/writable_iter.rb +1 -1
- data/lib/dtas/xs.rb +1 -1
- data/perl/dtas-graph +7 -2
- data/setup.rb +1 -2
- data/test/covshow.rb +1 -1
- data/test/helper.rb +1 -1
- data/test/player_integration.rb +1 -1
- data/test/test_buffer.rb +14 -10
- data/test/test_encoding.rb +20 -0
- data/test/test_env.rb +1 -1
- data/test/test_fadefx.rb +1 -1
- data/test/test_format.rb +1 -1
- data/test/test_format_change.rb +1 -1
- data/test/test_mcache.rb +1 -1
- data/test/test_mlib.rb +3 -3
- data/test/test_parse_freq.rb +1 -1
- data/test/test_pipeline.rb +47 -0
- data/test/test_player.rb +1 -1
- data/test/test_player_client_handler.rb +1 -1
- data/test/test_player_integration.rb +1 -1
- data/test/test_process.rb +1 -1
- data/test/test_rg_integration.rb +1 -1
- data/test/test_rg_state.rb +1 -1
- data/test/test_sigevent.rb +20 -0
- data/test/test_sink.rb +1 -1
- data/test/test_sink_pipe_size.rb +13 -16
- data/test/test_sink_tee_integration.rb +1 -1
- data/test/test_source_av.rb +1 -1
- data/test/test_source_sox.rb +1 -1
- data/test/test_splitfx.rb +1 -1
- data/test/test_tfx.rb +1 -1
- data/test/test_tracklist.rb +1 -1
- data/test/test_unixserver.rb +1 -1
- data/test/test_util.rb +1 -1
- metadata +26 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: e243e5ce687818e957241adc639e6a0557d6b4caff54fe423241a30cfbd0368f
|
|
4
|
+
data.tar.gz: 54d936c09a7ca62d97ce41f23e9c3db70b92765cea257cc34f7bbd21059ba938
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 937e5a36a9fcfe06011871c047a6cda9a8d402a3fea84a68a7214315e9228db03d8f7277d29adca0139ccc7358897a4985d606a96c156432ce53cba1a51fd801
|
|
7
|
+
data.tar.gz: 9aaed956fd48e6b5c0d45c0ef91a440bd6c4f53def5bfa5390ea5bd2315686dc199e0c0c007e2c1d8c2992bf9c386d3991b7c6fd183577f4e00bda860c09cf36
|
data/.gitignore
CHANGED
data/Documentation/.gitignore
CHANGED
data/Documentation/GNUmakefile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (C) 2013-
|
|
1
|
+
# Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
|
|
2
2
|
# License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
3
3
|
all::
|
|
4
4
|
|
|
@@ -69,7 +69,7 @@ all :: txt
|
|
|
69
69
|
|
|
70
70
|
%.txt : %.pod
|
|
71
71
|
$(pod2text) $< $@+
|
|
72
|
-
touch -r $< $@+
|
|
72
|
+
touch -r $< $@+
|
|
73
73
|
mv $@+ $@
|
|
74
74
|
|
|
75
75
|
clean::
|
|
@@ -56,7 +56,7 @@ Number of times to repeat the L<sndfile-cmp(1)> check. Default: 1
|
|
|
56
56
|
|
|
57
57
|
=head1 COPYRIGHT
|
|
58
58
|
|
|
59
|
-
Copyright 2013-
|
|
59
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
60
60
|
|
|
61
61
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
62
62
|
|
|
@@ -65,7 +65,7 @@ License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
|
65
65
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
66
66
|
|
|
67
67
|
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
68
|
-
and L<
|
|
68
|
+
and L<https://lists.gnu.org/archive/html/dtas-all/>
|
|
69
69
|
|
|
70
70
|
No subscription is necessary to post to the mailing list.
|
|
71
71
|
|
|
@@ -78,13 +78,13 @@ a problem.
|
|
|
78
78
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
79
79
|
|
|
80
80
|
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
81
|
-
and L<
|
|
81
|
+
and L<https://lists.gnu.org/archive/html/dtas-all/>
|
|
82
82
|
|
|
83
83
|
No subscription is necessary to post to the mailing list.
|
|
84
84
|
|
|
85
85
|
=head1 COPYRIGHT
|
|
86
86
|
|
|
87
|
-
Copyright 2013-
|
|
87
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
88
88
|
|
|
89
89
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
90
90
|
|
data/Documentation/dtas-ctl.pod
CHANGED
|
@@ -62,13 +62,13 @@ This defaults to ~/.dtas/player.sock
|
|
|
62
62
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
63
63
|
|
|
64
64
|
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
65
|
-
and L<
|
|
65
|
+
and L<https://lists.gnu.org/archive/html/dtas-all/>
|
|
66
66
|
|
|
67
67
|
No subscription is necessary to post to the mailing list.
|
|
68
68
|
|
|
69
69
|
=head1 COPYRIGHT
|
|
70
70
|
|
|
71
|
-
Copyright 2013-
|
|
71
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
72
72
|
|
|
73
73
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
74
74
|
|
|
@@ -23,13 +23,13 @@ VISUAL / EDITOR - your favorite *nix text editor, defaults to 'vi' if unset.
|
|
|
23
23
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
24
24
|
|
|
25
25
|
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
26
|
-
and L<
|
|
26
|
+
and L<https://lists.gnu.org/archive/html/dtas-all/>
|
|
27
27
|
|
|
28
28
|
No subscription is necessary to post to the mailing list.
|
|
29
29
|
|
|
30
30
|
=head1 COPYRIGHT
|
|
31
31
|
|
|
32
|
-
Copyright 2013-
|
|
32
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
33
33
|
|
|
34
34
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
35
35
|
|
data/Documentation/dtas-enq.pod
CHANGED
|
@@ -28,13 +28,13 @@ This defaults to ~/.dtas/player.sock
|
|
|
28
28
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
29
29
|
|
|
30
30
|
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
31
|
-
and L<
|
|
31
|
+
and L<https://lists.gnu.org/archive/html/dtas-all/>
|
|
32
32
|
|
|
33
33
|
No subscription is necessary to post to the mailing list.
|
|
34
34
|
|
|
35
35
|
=head1 COPYRIGHT
|
|
36
36
|
|
|
37
|
-
Copyright 2013-
|
|
37
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
38
38
|
|
|
39
39
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
40
40
|
|
data/Documentation/dtas-env.pod
CHANGED
|
@@ -10,7 +10,7 @@ As dtas uses Bourne shell and exposes it to users, dtas should have
|
|
|
10
10
|
a cohesive set of common environment variables across its audio
|
|
11
11
|
production and playback environments. This attempts to document
|
|
12
12
|
them. Most of these environments are set and managed by dtas
|
|
13
|
-
itself, but users editing commands (e.g. via L<dtas-sourcedit(1)>
|
|
13
|
+
itself, but users editing commands (e.g. via L<dtas-sourcedit(1)>)
|
|
14
14
|
should be aware of them.
|
|
15
15
|
|
|
16
16
|
=head1 ENVIRONMENT
|
|
@@ -64,12 +64,12 @@ temporary files are placed for most programs.
|
|
|
64
64
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
65
65
|
|
|
66
66
|
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
67
|
-
and L<
|
|
67
|
+
and L<https://lists.gnu.org/archive/html/dtas-all/>
|
|
68
68
|
|
|
69
69
|
No subscription is necessary to post to the mailing list.
|
|
70
70
|
|
|
71
71
|
=head1 COPYRIGHT
|
|
72
72
|
|
|
73
|
-
Copyright 2013-
|
|
73
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
74
74
|
|
|
75
75
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
@@ -45,13 +45,13 @@ This defaults to ~/.dtas/player.sock
|
|
|
45
45
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
46
46
|
|
|
47
47
|
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
48
|
-
and L<
|
|
48
|
+
and L<https://lists.gnu.org/archive/html/dtas-all/>
|
|
49
49
|
|
|
50
50
|
No subscription is necessary to post to the mailing list.
|
|
51
51
|
|
|
52
52
|
=head1 COPYRIGHT
|
|
53
53
|
|
|
54
|
-
Copyright 2013-
|
|
54
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
55
55
|
|
|
56
56
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
57
57
|
|
|
@@ -109,13 +109,13 @@ state across restarts of dtas-player.
|
|
|
109
109
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
110
110
|
|
|
111
111
|
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
112
|
-
and L<
|
|
112
|
+
and L<https://lists.gnu.org/archive/html/dtas-all/>
|
|
113
113
|
|
|
114
114
|
No subscription is necessary to post to the mailing list.
|
|
115
115
|
|
|
116
116
|
=head1 COPYRIGHT
|
|
117
117
|
|
|
118
|
-
Copyright 2013-
|
|
118
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
119
119
|
|
|
120
120
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
121
121
|
|
|
@@ -92,12 +92,12 @@ playback hardware are applied at the sink:
|
|
|
92
92
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
93
93
|
|
|
94
94
|
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
95
|
-
and L<
|
|
95
|
+
and L<https://lists.gnu.org/archive/html/dtas-all/>
|
|
96
96
|
|
|
97
97
|
No subscription is necessary to post to the mailing list.
|
|
98
98
|
|
|
99
99
|
=head1 COPYRIGHT
|
|
100
100
|
|
|
101
|
-
Copyright 2013-
|
|
101
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
102
102
|
|
|
103
103
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
=head1 NAME
|
|
4
4
|
|
|
5
|
-
dtas-player_protocol - protocol for
|
|
5
|
+
dtas-player_protocol - protocol for controlling dtas-player
|
|
6
6
|
|
|
7
7
|
=head1 DESCRIPTION
|
|
8
8
|
|
|
@@ -382,7 +382,7 @@ Clear current tracklist
|
|
|
382
382
|
|
|
383
383
|
Show/or change consume status of the tracklist. Enabling this causes
|
|
384
384
|
tracks to be deleted from the tracklist after they are played or skipped.
|
|
385
|
-
With no args, this will show "true" or "false
|
|
385
|
+
With no args, this will show "true" or "false"
|
|
386
386
|
|
|
387
387
|
=item tl current
|
|
388
388
|
|
|
@@ -464,12 +464,12 @@ another client socket to issue non-watch commands.
|
|
|
464
464
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
465
465
|
|
|
466
466
|
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
467
|
-
and L<
|
|
467
|
+
and L<https://lists.gnu.org/archive/html/dtas-all/>
|
|
468
468
|
|
|
469
469
|
No subscription is necessary to post to the mailing list.
|
|
470
470
|
|
|
471
471
|
=head1 COPYRIGHT
|
|
472
472
|
|
|
473
|
-
Copyright 2013-
|
|
473
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
474
474
|
|
|
475
475
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
@@ -71,13 +71,13 @@ See L<dtas-xdelay(1)>.
|
|
|
71
71
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
72
72
|
|
|
73
73
|
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
74
|
-
and L<
|
|
74
|
+
and L<https://lists.gnu.org/archive/html/dtas-all/>
|
|
75
75
|
|
|
76
76
|
No subscription is necessary to post to the mailing list.
|
|
77
77
|
|
|
78
78
|
=head1 COPYRIGHT
|
|
79
79
|
|
|
80
|
-
Copyright 2013-
|
|
80
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
81
81
|
|
|
82
82
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
83
83
|
|
|
@@ -13,8 +13,8 @@ dtas-sinkedit SINKNAME
|
|
|
13
13
|
dtas-sinkedit spawns an editor to allow editing of a sink as a YAML file.
|
|
14
14
|
See L<dtas-player_protocol(7)> for details on SINKARGS.
|
|
15
15
|
|
|
16
|
-
On Linux machines
|
|
17
|
-
is used to monitor the file for changes while the text
|
|
16
|
+
On Linux machines, L<inotify(7)>
|
|
17
|
+
is used to monitor the file for changes while the text editor is running.
|
|
18
18
|
Each time a user finishes saving a file, changes are committed immediately.
|
|
19
19
|
This behavior may be disabled by using the -N or --no-watch command-line
|
|
20
20
|
switch.
|
|
@@ -64,13 +64,13 @@ This defaults to ~/.dtas/player.sock
|
|
|
64
64
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
65
65
|
|
|
66
66
|
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
67
|
-
and L<
|
|
67
|
+
and L<https://lists.gnu.org/archive/html/dtas-all/>
|
|
68
68
|
|
|
69
69
|
No subscription is necessary to post to the mailing list.
|
|
70
70
|
|
|
71
71
|
=head1 COPYRIGHT
|
|
72
72
|
|
|
73
|
-
Copyright 2013-
|
|
73
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
74
74
|
|
|
75
75
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
76
76
|
|
|
@@ -16,8 +16,8 @@ a pipe or file, it is parsed as YAML and fed to the L<dtas-player(1)> instance
|
|
|
16
16
|
non-interactively. This is useful for loading various profiles from the
|
|
17
17
|
filesystem.
|
|
18
18
|
|
|
19
|
-
On Linux machines
|
|
20
|
-
is used to monitor the file for changes while the text
|
|
19
|
+
On Linux machines, L<inotify(7)>
|
|
20
|
+
is used to monitor the file for changes while the text editor is running.
|
|
21
21
|
Each time a user finishes saving a file, changes are committed immediately.
|
|
22
22
|
This behavior may be disabled by using the -N or --no-watch command-line
|
|
23
23
|
switch.
|
|
@@ -71,13 +71,13 @@ This defaults to ~/.dtas/player.sock
|
|
|
71
71
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
72
72
|
|
|
73
73
|
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
74
|
-
and L<
|
|
74
|
+
and L<https://lists.gnu.org/archive/html/dtas-all/>
|
|
75
75
|
|
|
76
76
|
No subscription is necessary to post to the mailing list.
|
|
77
77
|
|
|
78
78
|
=head1 COPYRIGHT
|
|
79
79
|
|
|
80
|
-
Copyright 2013-
|
|
80
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
81
81
|
|
|
82
82
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
83
83
|
|
|
@@ -41,6 +41,12 @@ Silent operation, commands are not printed as executed
|
|
|
41
41
|
Disable automatic setting of the DITHERFX env. This also passes
|
|
42
42
|
the option to L<sox(1)> via SOX_OPTS.
|
|
43
43
|
|
|
44
|
+
=item -E, --err-suffix SUFFIX
|
|
45
|
+
|
|
46
|
+
Write the contents of C<stderr>. This is useful for capturing
|
|
47
|
+
the per-track output of the L<sox(1)> C<stats> effect when
|
|
48
|
+
combined with parallel C<--jobs>.
|
|
49
|
+
|
|
44
50
|
=item -O, --outdir OUTDIR
|
|
45
51
|
|
|
46
52
|
Set output directory instead of current directory.
|
|
@@ -262,7 +268,7 @@ imbalance in a live concert recording from the audience:
|
|
|
262
268
|
|
|
263
269
|
=head1 COPYRIGHT
|
|
264
270
|
|
|
265
|
-
Copyright 2013-
|
|
271
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
266
272
|
|
|
267
273
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
268
274
|
|
data/Documentation/dtas-tl.pod
CHANGED
|
@@ -29,7 +29,7 @@ client).
|
|
|
29
29
|
=item consume [BOOLEAN] - show, enable, or disable consume mode
|
|
30
30
|
|
|
31
31
|
Enabling "consume" mode causes tracks to be removed when they are
|
|
32
|
-
done playing (or skipped.
|
|
32
|
+
done playing (or skipped).
|
|
33
33
|
|
|
34
34
|
=item current - display the current track, "NONE" if not playing
|
|
35
35
|
|
|
@@ -78,7 +78,7 @@ display the current tracklist
|
|
|
78
78
|
|
|
79
79
|
$ dtas-tl cat
|
|
80
80
|
|
|
81
|
-
to add an
|
|
81
|
+
to add an entire directory of FLAC files
|
|
82
82
|
|
|
83
83
|
$ dtas-tl addtail /path/to/directory/*.flac
|
|
84
84
|
|
|
@@ -114,13 +114,13 @@ This defaults to ~/.dtas/player.sock
|
|
|
114
114
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
115
115
|
|
|
116
116
|
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
117
|
-
and L<
|
|
117
|
+
and L<https://lists.gnu.org/archive/html/dtas-all/>
|
|
118
118
|
|
|
119
119
|
No subscription is necessary to post to the mailing list.
|
|
120
120
|
|
|
121
121
|
=head1 COPYRIGHT
|
|
122
122
|
|
|
123
|
-
Copyright 2013-
|
|
123
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
124
124
|
|
|
125
125
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
126
126
|
|
|
@@ -80,13 +80,13 @@ are greatly appreciated.
|
|
|
80
80
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
81
81
|
|
|
82
82
|
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
83
|
-
and L<
|
|
83
|
+
and L<https://lists.gnu.org/archive/html/dtas-all/>
|
|
84
84
|
|
|
85
85
|
No subscription is necessary to post to the mailing list.
|
|
86
86
|
|
|
87
87
|
=head1 COPYRIGHT
|
|
88
88
|
|
|
89
|
-
Copyright 2013-
|
|
89
|
+
Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
|
|
90
90
|
|
|
91
91
|
License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
92
92
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
|
-
# Copyright 2015-
|
|
2
|
+
# Copyright 2015-2020 all contributors <dtas-all@nongnu.org>
|
|
3
3
|
# License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
4
4
|
# frozen_string_literal: true
|
|
5
5
|
contact = %q{
|
|
6
6
|
All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
|
|
7
7
|
|
|
8
8
|
Mailing list archives available at L<https://80x24.org/dtas-all/>
|
|
9
|
-
and L<
|
|
9
|
+
and L<https://lists.gnu.org/archive/html/dtas-all/>
|
|
10
10
|
|
|
11
11
|
No subscription is necessary to post to the mailing list.
|
|
12
12
|
}
|
data/GIT-VERSION-GEN
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
|
-
# Copyright (C) 2013-
|
|
2
|
+
# Copyright (C) 2013-2021 all contributors <dtas-all@nongnu.org>
|
|
3
3
|
# License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
|
|
4
4
|
# frozen_string_literal: true
|
|
5
5
|
CONSTANT = "DTAS::VERSION"
|
|
6
6
|
RVF = "lib/dtas/version.rb"
|
|
7
7
|
GVF = "GIT-VERSION-FILE"
|
|
8
|
-
DEF_VER = "v0.
|
|
8
|
+
DEF_VER = "v0.18.0"
|
|
9
9
|
vn = DEF_VER
|
|
10
10
|
|
|
11
11
|
# First see if there is a version file (included in release tarballs),
|
data/GNUmakefile
CHANGED
data/HACKING
CHANGED
|
@@ -18,10 +18,10 @@ developers do. Please send patches via git-send-email(1) to the public
|
|
|
18
18
|
mailing list at <dtas-all@nongnu.org>. Pull requests should be
|
|
19
19
|
formatted using git-request-pull(1).\
|
|
20
20
|
Mailing list archives available at <https://80x24.org/dtas-all/> and
|
|
21
|
-
<
|
|
21
|
+
<https://lists.gnu.org/archive/html/dtas-all/>\
|
|
22
22
|
No subscription is necessary to post to the mailing list.
|
|
23
23
|
|
|
24
24
|
# COPYRIGHT
|
|
25
25
|
|
|
26
|
-
Copyright 2013-
|
|
26
|
+
Copyright 2013-2020 all contributors <dtas-all@nongnu.org>.\
|
|
27
27
|
License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
|
data/INSTALL
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
Uncommon for audio software, dtas is implemented in Ruby.
|
|
1
|
+
Uncommon for audio software, dtas is currently implemented in Ruby.
|
|
2
2
|
|
|
3
3
|
The latest stable release or development snapshot of Ruby is recommended.
|
|
4
4
|
However, Ruby 1.9.3 and later works, but older versions of Ruby do not.
|
|
@@ -8,26 +8,16 @@ dtas-player uses SoX by default and you will need it unless you've
|
|
|
8
8
|
reconfigured dtas-player to use something else.
|
|
9
9
|
|
|
10
10
|
mp3gain is required if you want to use ReplayGain with MP3s
|
|
11
|
+
(it is no longer in new versions of Debian)
|
|
11
12
|
|
|
12
13
|
If you only intend to use dtas-cueedit, you will need metaflac(1) from
|
|
13
14
|
the FLAC package.
|
|
14
15
|
|
|
15
|
-
Debian
|
|
16
|
+
Debian 10+ users can install dependencies easily:
|
|
16
17
|
|
|
17
|
-
sudo apt-get install sox libsox-fmt-all
|
|
18
|
+
sudo apt-get install sox libsox-fmt-all flac ruby-dev ruby-charlock-holmes
|
|
18
19
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
Be sure to have Ruby development headers and a working C compiler.
|
|
22
|
-
This will pull in the io_splice and sleepy_penguin RubyGems for minor
|
|
23
|
-
speedups. If you cannot be bothered to have a development
|
|
24
|
-
environment, just use "gem install dtas".
|
|
25
|
-
|
|
26
|
-
sudo gem install dtas-linux
|
|
27
|
-
|
|
28
|
-
This should pull in the "io_splice" and "sleepy_penguin" RubyGems
|
|
29
|
-
|
|
30
|
-
For future upgrades of dtas (upgrades to dtas-linux will be infrequent)
|
|
20
|
+
For future upgrades of dtas
|
|
31
21
|
|
|
32
22
|
sudo gem update dtas
|
|
33
23
|
|
|
@@ -39,27 +29,26 @@ For future upgrades of dtas (upgrades to dtas-linux will be infrequent)
|
|
|
39
29
|
|
|
40
30
|
Grab the latest tarball from our HTTPS site:
|
|
41
31
|
|
|
42
|
-
https://80x24.org/dtas/
|
|
32
|
+
https://80x24.org/dtas/2021/dtas-0.18.1.tar.gz
|
|
43
33
|
|
|
44
|
-
$ tar zxvf dtas-0.
|
|
45
|
-
$ cd dtas-0.
|
|
34
|
+
$ tar zxvf dtas-0.18.1.tar.gz
|
|
35
|
+
$ cd dtas-0.18.1
|
|
46
36
|
$ sudo ruby setup.rb
|
|
47
37
|
|
|
48
|
-
GNU/Linux users may optionally install "
|
|
49
|
-
"
|
|
38
|
+
GNU/Linux users may optionally install the "sleepy_penguin" RubyGem
|
|
39
|
+
for a tiny speed improvement over the default "fiddle" RubyGem.
|
|
50
40
|
|
|
51
|
-
*
|
|
52
|
-
* sleepy_penguin - https://bogomips.org/sleepy_penguin/
|
|
41
|
+
* sleepy_penguin - https://yhbt.net/sleepy_penguin/
|
|
53
42
|
|
|
54
43
|
# CONTACT
|
|
55
44
|
|
|
56
45
|
Please do not hesitate to send plain-text mail to <dtas-all@nongnu.org>
|
|
57
46
|
regarding installation and to share your notes/experiences.
|
|
58
47
|
Mailing list archives available at <https://80x24.org/dtas-all/> or
|
|
59
|
-
<
|
|
48
|
+
<https://lists.gnu.org/archive/html/dtas-all/>
|
|
60
49
|
No subscription is necessary to post to the mailing list.
|
|
61
50
|
|
|
62
51
|
# COPYRIGHT
|
|
63
52
|
|
|
64
|
-
Copyright 2013-
|
|
53
|
+
Copyright 2013-2021 all contributors <dtas-all@nongnu.org>
|
|
65
54
|
License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
|