everything related to duct tape audio suite (dtas)
 help / color / mirror / code / Atom feed
Search results ordered by [date|relevance]  view[summary|nested|Atom feed]
thread overview below | download mbox.gz: |
* [ANN] dtas 0.17.0 - duct tape audio suite for *nix
@ 2019-11-14  1:56  7% Eric Wong
  0 siblings, 0 replies; 3+ results
From: Eric Wong @ 2019-11-14  1:56 UTC (permalink / raw)
  To: ruby-talk, dtas-all

Free Software command-line tools for audio playback, mastering, and
whatever else related to audio.  dtas follows the worse-is-better
philosophy and acts as duct tape to combine existing command-line tools
for flexibility and ease-of-development.  dtas is currently implemented
in Ruby (and some embedded shell), but may use other languages in the
future.

Changes:

    dtas 0.17.0

    dtas-player automatically pauses on sink death (e.g. when an
    external DAC is unplugged), thanks to Rene Maurer for the
    feature suggestion.

    zsh completions are also bundled in the examples/ directory
    thanks to James Rowe.

    There's also a couple of minor bugfixes and documentation
    updates.

    There's also kwarg warning fixes for Ruby 2.7.0dev.  Future
    components will probably use a more stable glue language
    than Ruby, and we already have dtas-graph which is Perl5.

    Eric Wong (11):
          doc: remove inaccurate comment about "GNU-ism"
          doc: update homepage to point to cgit /about/
          dtas-graph: show inode number in hex, too
          dtas-graph: add a short blurb about what it does
          dtas-console: remove unused variables
          dtas-console: pass kwargs as-is to String#encode
          buffer/splice: pass kwargs as-is to tee/splice
          player: automatically pause if last sink dies
          readahead: avoid Array#compact and Array#max on `false'
          doc: use new HTTPS address at lists.gnu.org
          TODO: add a note about using a more stable glue language

    James Rowe (2):
          doc: trivial typo fixes
          Add zsh completion support

* homepage: https://80x24.org/dtas.git/about
* https://80x24.org/dtas/INSTALL
* https://80x24.org/dtas/dtas-player.txt
* https://80x24.org/dtas/NEWS.atom
* git clone https://80x24.org/dtas.git
* dtas-all@nongnu.org (plain-text only, no HTML mail, please)
* mail archives: https://80x24.org/dtas-all/
  nntp://news.public-inbox.org/inbox.comp.audio.dtas
  https://80x24.org/dtas-all/new.atom


^ permalink raw reply	[relevance 7%]

* Re: [PATCH] doc: trivial typo fixes
  2019-11-04  9:35  4% [PATCH] doc: trivial typo fixes James Rowe
@ 2019-11-09  9:17  7% ` Eric Wong
  0 siblings, 0 replies; 3+ results
From: Eric Wong @ 2019-11-09  9:17 UTC (permalink / raw)
  To: James Rowe; +Cc: dtas-all

James Rowe <jnrowe@gmail.com> wrote:
>   I’m entirely unaware of how to use git-send-email, so hopefully this
> email arrives and is formatted correctly.  Feel free to reply with abuse
> if it isn’t ;)

Thanks, everything seems fine.  Applied and pushed.

Btw, I've been working throughout the years on to ensure
software development isn't tied to a single provider.  So
hopefully git-send-email (and other tools around email) aren't
too tough to learn.  I (and other git hackers) @
git@vger.kernel.org can probably improve it, further.


^ permalink raw reply	[relevance 7%]

* [PATCH] doc: trivial typo fixes
@ 2019-11-04  9:35  4% James Rowe
  2019-11-09  9:17  7% ` Eric Wong
  0 siblings, 1 reply; 3+ results
From: James Rowe @ 2019-11-04  9:35 UTC (permalink / raw)
  To: dtas-all; +Cc: James Rowe

---

  I’m entirely unaware of how to use git-send-email, so hopefully this
email arrives and is formatted correctly.  Feel free to reply with abuse
if it isn’t ;)

 Documentation/dtas-env.pod             | 2 +-
 Documentation/dtas-player_protocol.pod | 4 ++--
 Documentation/dtas-sinkedit.pod        | 2 +-
 Documentation/dtas-sourceedit.pod      | 2 +-
 Documentation/dtas-tl.pod              | 4 ++--
 README                                 | 2 +-
 6 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/Documentation/dtas-env.pod b/Documentation/dtas-env.pod
index d0ea2e8..6c8099e 100644
--- a/Documentation/dtas-env.pod
+++ b/Documentation/dtas-env.pod
@@ -10,7 +10,7 @@ As dtas uses Bourne shell and exposes it to users, dtas should have
 a cohesive set of common environment variables across its audio
 production and playback environments.  This attempts to document
 them.  Most of these environments are set and managed by dtas
-itself, but users editing commands (e.g. via L<dtas-sourcedit(1)>
+itself, but users editing commands (e.g. via L<dtas-sourcedit(1)>)
 should be aware of them.
 
 =head1 ENVIRONMENT
diff --git a/Documentation/dtas-player_protocol.pod b/Documentation/dtas-player_protocol.pod
index f709e96..e031f58 100644
--- a/Documentation/dtas-player_protocol.pod
+++ b/Documentation/dtas-player_protocol.pod
@@ -2,7 +2,7 @@
 
 =head1 NAME
 
-dtas-player_protocol - protocol for controling dtas-player
+dtas-player_protocol - protocol for controlling dtas-player
 
 =head1 DESCRIPTION
 
@@ -382,7 +382,7 @@ Clear current tracklist
 
 Show/or change consume status of the tracklist.  Enabling this causes
 tracks to be deleted from the tracklist after they are played or skipped.
-With no args, this will show "true" or "false
+With no args, this will show "true" or "false"
 
 =item tl current
 
diff --git a/Documentation/dtas-sinkedit.pod b/Documentation/dtas-sinkedit.pod
index d6af071..a370df1 100644
--- a/Documentation/dtas-sinkedit.pod
+++ b/Documentation/dtas-sinkedit.pod
@@ -14,7 +14,7 @@ dtas-sinkedit spawns an editor to allow editing of a sink as a YAML file.
 See L<dtas-player_protocol(7)> for details on SINKARGS.
 
 On Linux machines with the sleepy_penguin RubyGem installed, L<inotify(7)>
-is used to monitor the file for changes while the text exitor is running.
+is used to monitor the file for changes while the text editor is running.
 Each time a user finishes saving a file, changes are committed immediately.
 This behavior may be disabled by using the -N or --no-watch command-line
 switch.
diff --git a/Documentation/dtas-sourceedit.pod b/Documentation/dtas-sourceedit.pod
index 169f08b..d319ded 100644
--- a/Documentation/dtas-sourceedit.pod
+++ b/Documentation/dtas-sourceedit.pod
@@ -17,7 +17,7 @@ non-interactively.  This is useful for loading various profiles from the
 filesystem.
 
 On Linux machines with the sleepy_penguin RubyGem installed, L<inotify(7)>
-is used to monitor the file for changes while the text exitor is running.
+is used to monitor the file for changes while the text editor is running.
 Each time a user finishes saving a file, changes are committed immediately.
 This behavior may be disabled by using the -N or --no-watch command-line
 switch.
diff --git a/Documentation/dtas-tl.pod b/Documentation/dtas-tl.pod
index 6ca88d0..024832a 100644
--- a/Documentation/dtas-tl.pod
+++ b/Documentation/dtas-tl.pod
@@ -29,7 +29,7 @@ client).
 =item consume [BOOLEAN] - show, enable, or disable consume mode
 
 Enabling "consume" mode causes tracks to be removed when they are
-done playing (or skipped.
+done playing (or skipped).
 
 =item current - display the current track, "NONE" if not playing
 
@@ -78,7 +78,7 @@ display the current tracklist
 
         $ dtas-tl cat
 
-to add an an entire directory of FLAC files
+to add an entire directory of FLAC files
 
         $ dtas-tl addtail /path/to/directory/*.flac
 
diff --git a/README b/README
index cc6258d..d0d4234 100644
--- a/README
+++ b/README
@@ -25,7 +25,7 @@ for audio.  dtas-player supports:
 * ReplayGain (including fallback gain and peak normalization)
 
 dtas-player is a *nix pipeline and process manager.  It may be used
-spawn and pipe to abitrary Unix commands, not just audio-related
+spawn and pipe to arbitrary Unix commands, not just audio-related
 commands.  It can interactively restart/replace the source (audio
 decoder) component of a pipeline while keeping the sink (playback
 endpoint) running.
-- 
2.20.1



^ permalink raw reply related	[relevance 4%]

Results 1-3 of 3 | reverse | options above
-- pct% links below jump to the message on this page, permalinks otherwise --
2019-11-04  9:35  4% [PATCH] doc: trivial typo fixes James Rowe
2019-11-09  9:17  7% ` Eric Wong
2019-11-14  1:56  7% [ANN] dtas 0.17.0 - duct tape audio suite for *nix Eric Wong

Code repositories for project(s) associated with this public inbox

	https://80x24.org/dtas.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).