dtas 0.15.0 → 0.18.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (150) hide show
  1. checksums.yaml +5 -5
  2. data/.gitignore +1 -1
  3. data/Documentation/.gitignore +1 -1
  4. data/Documentation/GNUmakefile +2 -2
  5. data/Documentation/dtas-archive.pod +2 -2
  6. data/Documentation/dtas-console.pod +2 -2
  7. data/Documentation/dtas-ctl.pod +2 -2
  8. data/Documentation/dtas-cueedit.pod +2 -2
  9. data/Documentation/dtas-enq.pod +2 -2
  10. data/Documentation/dtas-env.pod +3 -3
  11. data/Documentation/dtas-msinkctl.pod +2 -2
  12. data/Documentation/dtas-player.pod +2 -2
  13. data/Documentation/dtas-player_effects.pod +2 -2
  14. data/Documentation/dtas-player_protocol.pod +4 -4
  15. data/Documentation/dtas-player_sink_examples.pod +2 -2
  16. data/Documentation/dtas-sinkedit.pod +4 -4
  17. data/Documentation/dtas-sourceedit.pod +4 -4
  18. data/Documentation/dtas-splitfx.pod +7 -1
  19. data/Documentation/dtas-tl.pod +4 -4
  20. data/Documentation/dtas-xdelay.pod +2 -2
  21. data/Documentation/update-footer.rb +2 -2
  22. data/GIT-VERSION-GEN +2 -2
  23. data/GNUmakefile +1 -1
  24. data/HACKING +2 -2
  25. data/INSTALL +13 -24
  26. data/README +14 -8
  27. data/Rakefile +2 -2
  28. data/TODO +3 -1
  29. data/bin/dtas-archive +1 -1
  30. data/bin/dtas-console +19 -23
  31. data/bin/dtas-ctl +1 -1
  32. data/bin/dtas-cueedit +1 -1
  33. data/bin/dtas-enq +1 -1
  34. data/bin/dtas-mlib +1 -1
  35. data/bin/dtas-msinkctl +1 -1
  36. data/bin/dtas-partstats +1 -1
  37. data/bin/dtas-player +1 -1
  38. data/bin/dtas-readahead +4 -4
  39. data/bin/dtas-sinkedit +1 -1
  40. data/bin/dtas-sourceedit +1 -1
  41. data/bin/dtas-splitfx +8 -1
  42. data/bin/dtas-tl +1 -1
  43. data/bin/dtas-xdelay +1 -1
  44. data/dtas-linux.gemspec +5 -6
  45. data/dtas-mpris.gemspec +2 -2
  46. data/dtas.gemspec +2 -2
  47. data/examples/zsh-completion/README +3 -0
  48. data/examples/zsh-completion/_dtas-archive +16 -0
  49. data/examples/zsh-completion/_dtas-ctl +114 -0
  50. data/examples/zsh-completion/_dtas-cueedit +7 -0
  51. data/examples/zsh-completion/_dtas-enq +7 -0
  52. data/examples/zsh-completion/_dtas-mlib +29 -0
  53. data/examples/zsh-completion/_dtas-msinkctl +8 -0
  54. data/examples/zsh-completion/_dtas-partstats +7 -0
  55. data/examples/zsh-completion/_dtas-sinkedit +11 -0
  56. data/examples/zsh-completion/_dtas-sourceedit +11 -0
  57. data/examples/zsh-completion/_dtas-splitfx +17 -0
  58. data/examples/zsh-completion/_dtas-tl +52 -0
  59. data/examples/zsh-completion/_dtas-xdelay +17 -0
  60. data/lib/dtas.rb +12 -2
  61. data/lib/dtas/buffer.rb +10 -5
  62. data/lib/dtas/buffer/fiddle_splice.rb +216 -0
  63. data/lib/dtas/buffer/read_write.rb +3 -3
  64. data/lib/dtas/buffer/splice.rb +16 -10
  65. data/lib/dtas/command.rb +1 -1
  66. data/lib/dtas/compat_onenine.rb +1 -1
  67. data/lib/dtas/cue_index.rb +1 -1
  68. data/lib/dtas/disclaimer.rb +1 -1
  69. data/lib/dtas/edit_client.rb +1 -1
  70. data/lib/dtas/encoding.rb +57 -0
  71. data/lib/dtas/fadefx.rb +1 -1
  72. data/lib/dtas/format.rb +1 -1
  73. data/lib/dtas/mcache.rb +1 -1
  74. data/lib/dtas/mlib.rb +38 -31
  75. data/lib/dtas/mlib/migrations/0001_initial.rb +1 -1
  76. data/lib/dtas/nonblock.rb +1 -1
  77. data/lib/dtas/parse_freq.rb +1 -1
  78. data/lib/dtas/parse_time.rb +1 -1
  79. data/lib/dtas/partstats.rb +1 -1
  80. data/lib/dtas/pipe.rb +16 -9
  81. data/lib/dtas/pipeline.rb +75 -0
  82. data/lib/dtas/player.rb +3 -3
  83. data/lib/dtas/player/client_handler.rb +23 -15
  84. data/lib/dtas/process.rb +1 -1
  85. data/lib/dtas/replaygain.rb +1 -1
  86. data/lib/dtas/rg_state.rb +1 -1
  87. data/lib/dtas/serialize.rb +1 -1
  88. data/lib/dtas/sigevent.rb +6 -3
  89. data/lib/dtas/sigevent/efd.rb +3 -1
  90. data/lib/dtas/sigevent/fiddle_efd.rb +38 -0
  91. data/lib/dtas/sigevent/pipe.rb +2 -2
  92. data/lib/dtas/sink.rb +1 -1
  93. data/lib/dtas/source.rb +1 -1
  94. data/lib/dtas/source/av.rb +1 -1
  95. data/lib/dtas/source/av_ff_common.rb +1 -1
  96. data/lib/dtas/source/cmd.rb +1 -1
  97. data/lib/dtas/source/common.rb +1 -1
  98. data/lib/dtas/source/ff.rb +1 -1
  99. data/lib/dtas/source/file.rb +1 -1
  100. data/lib/dtas/source/mp3gain.rb +1 -1
  101. data/lib/dtas/source/sox.rb +4 -2
  102. data/lib/dtas/source/splitfx.rb +1 -1
  103. data/lib/dtas/spawn_fix.rb +1 -1
  104. data/lib/dtas/splitfx.rb +6 -3
  105. data/lib/dtas/state_file.rb +1 -1
  106. data/lib/dtas/tfx.rb +1 -1
  107. data/lib/dtas/track.rb +1 -1
  108. data/lib/dtas/tracklist.rb +1 -1
  109. data/lib/dtas/unix_accepted.rb +1 -1
  110. data/lib/dtas/unix_client.rb +1 -1
  111. data/lib/dtas/unix_server.rb +1 -1
  112. data/lib/dtas/util.rb +1 -1
  113. data/lib/dtas/watchable.rb +60 -55
  114. data/lib/dtas/watchable/fiddle_ino.rb +78 -0
  115. data/lib/dtas/watchable/inotify.rb +13 -0
  116. data/lib/dtas/writable_iter.rb +1 -1
  117. data/lib/dtas/xs.rb +1 -1
  118. data/perl/dtas-graph +7 -2
  119. data/setup.rb +1 -2
  120. data/test/covshow.rb +1 -1
  121. data/test/helper.rb +1 -1
  122. data/test/player_integration.rb +1 -1
  123. data/test/test_buffer.rb +14 -10
  124. data/test/test_encoding.rb +20 -0
  125. data/test/test_env.rb +1 -1
  126. data/test/test_fadefx.rb +1 -1
  127. data/test/test_format.rb +1 -1
  128. data/test/test_format_change.rb +1 -1
  129. data/test/test_mcache.rb +1 -1
  130. data/test/test_mlib.rb +3 -3
  131. data/test/test_parse_freq.rb +1 -1
  132. data/test/test_pipeline.rb +47 -0
  133. data/test/test_player.rb +1 -1
  134. data/test/test_player_client_handler.rb +1 -1
  135. data/test/test_player_integration.rb +1 -1
  136. data/test/test_process.rb +1 -1
  137. data/test/test_rg_integration.rb +1 -1
  138. data/test/test_rg_state.rb +1 -1
  139. data/test/test_sigevent.rb +20 -0
  140. data/test/test_sink.rb +1 -1
  141. data/test/test_sink_pipe_size.rb +13 -16
  142. data/test/test_sink_tee_integration.rb +1 -1
  143. data/test/test_source_av.rb +1 -1
  144. data/test/test_source_sox.rb +1 -1
  145. data/test/test_splitfx.rb +1 -1
  146. data/test/test_tfx.rb +1 -1
  147. data/test/test_tracklist.rb +1 -1
  148. data/test/test_unixserver.rb +1 -1
  149. data/test/test_util.rb +1 -1
  150. metadata +26 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: b38ad68d0ac0b303e95ef7a6de996581fd4a5c73
4
- data.tar.gz: 84066e2d52ede911d045b0d9f62a6d0cb741a0a3
2
+ SHA256:
3
+ metadata.gz: e243e5ce687818e957241adc639e6a0557d6b4caff54fe423241a30cfbd0368f
4
+ data.tar.gz: 54d936c09a7ca62d97ce41f23e9c3db70b92765cea257cc34f7bbd21059ba938
5
5
  SHA512:
6
- metadata.gz: e02cd6429e8df6fca2d6d0745e5fa1094910c6688ecbbc404d309f044a6abba32dfc0f0b03f60f5d8a487f94fc64fe6cedc0365c5a5cf539fb6d1db80b05bcad
7
- data.tar.gz: 8849acee6e2ec2ec588f686d7d56e741db25e480a8d9661d0feee4f95fe6f8dbd030ae07806654b7aa6020abd46243bfab8a7f33e25e977467aafe1b7a824352
6
+ metadata.gz: 937e5a36a9fcfe06011871c047a6cda9a8d402a3fea84a68a7214315e9228db03d8f7277d29adca0139ccc7358897a4985d606a96c156432ce53cba1a51fd801
7
+ data.tar.gz: 9aaed956fd48e6b5c0d45c0ef91a440bd6c4f53def5bfa5390ea5bd2315686dc199e0c0c007e2c1d8c2992bf9c386d3991b7c6fd183577f4e00bda860c09cf36
data/.gitignore CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
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
  /GIT-VERSION-FILE
4
4
  /Manifest.txt
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
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
  *.1
4
4
  *.5
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
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 $< $@+ 2>/dev/null || true # GNU-ism
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-2016 all contributors L<mailto:dtas-all@nongnu.org>
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<ftp://lists.gnu.org/dtas-all/>
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<ftp://lists.gnu.org/dtas-all/>
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-2016 all contributors L<mailto:dtas-all@nongnu.org>
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
 
@@ -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<ftp://lists.gnu.org/dtas-all/>
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-2016 all contributors L<mailto:dtas-all@nongnu.org>
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<ftp://lists.gnu.org/dtas-all/>
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-2016 all contributors L<mailto:dtas-all@nongnu.org>
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
 
@@ -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<ftp://lists.gnu.org/dtas-all/>
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-2016 all contributors L<mailto:dtas-all@nongnu.org>
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
 
@@ -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<ftp://lists.gnu.org/dtas-all/>
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-2016 all contributors L<mailto:dtas-all@nongnu.org>
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<ftp://lists.gnu.org/dtas-all/>
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-2016 all contributors L<mailto:dtas-all@nongnu.org>
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<ftp://lists.gnu.org/dtas-all/>
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-2016 all contributors L<mailto:dtas-all@nongnu.org>
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<ftp://lists.gnu.org/dtas-all/>
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-2016 all contributors L<mailto:dtas-all@nongnu.org>
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 controling dtas-player
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<ftp://lists.gnu.org/dtas-all/>
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-2016 all contributors L<mailto:dtas-all@nongnu.org>
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<ftp://lists.gnu.org/dtas-all/>
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-2016 all contributors L<mailto:dtas-all@nongnu.org>
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 with the sleepy_penguin RubyGem installed, L<inotify(7)>
17
- is used to monitor the file for changes while the text exitor is running.
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<ftp://lists.gnu.org/dtas-all/>
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-2016 all contributors L<mailto:dtas-all@nongnu.org>
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 with the sleepy_penguin RubyGem installed, L<inotify(7)>
20
- is used to monitor the file for changes while the text exitor is running.
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<ftp://lists.gnu.org/dtas-all/>
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-2016 all contributors L<mailto:dtas-all@nongnu.org>
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-2016 all contributors L<mailto:dtas-all@nongnu.org>
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
 
@@ -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 an entire directory of FLAC files
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<ftp://lists.gnu.org/dtas-all/>
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-2016 all contributors L<mailto:dtas-all@nongnu.org>
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<ftp://lists.gnu.org/dtas-all/>
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-2016 all contributors L<mailto:dtas-all@nongnu.org>
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-2016 all contributors <dtas-all@nongnu.org>
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<ftp://lists.gnu.org/dtas-all/>
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-2016 all contributors <dtas-all@nongnu.org>
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.15.0"
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
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
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
  pkg = dtas
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
- <ftp://lists.gnu.org/dtas-all/>\
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-2016 all contributors <dtas-all@nongnu.org>.\
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 7+ users can install dependencies easily:
16
+ Debian 10+ users can install dependencies easily:
16
17
 
17
- sudo apt-get install sox libsox-fmt-all mp3gain flac ruby-dev
18
+ sudo apt-get install sox libsox-fmt-all flac ruby-dev ruby-charlock-holmes
18
19
 
19
- # installing dtas RubyGem on GNU/Linux (Linux kernel 2.6.32+)
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/2017/dtas-0.15.0.tar.gz
32
+ https://80x24.org/dtas/2021/dtas-0.18.1.tar.gz
43
33
 
44
- $ tar zxvf dtas-0.15.0.tar.gz
45
- $ cd dtas-0.15.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 "io_splice" and
49
- "sleepy_penguin" packages:
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
- * io_splice - https://bogomips.org/ruby_io_splice/
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
- <ftp://lists.gnu.org/dtas-all>
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-2016 all contributors <dtas-all@nongnu.org>
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>