27 lines
1.1 KiB
Bash
27 lines
1.1 KiB
Bash
#!/bin/bash
|
|
|
|
# Copyright © 2012-2026 ScriptFanix
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License.
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
|
|
# A copy of the GNU General Public License v3 is includded in the LICENSE file
|
|
# at the root of the project.
|
|
|
|
decodeOpusdec() {
|
|
# Set the tmpfile base name for this specific decode task
|
|
# source file id + decoder name
|
|
tmpfile="${fileid}opusdec"
|
|
# Build opusdec command: decode Opus to WAV in tempdir
|
|
# ${ionice} prepends the ionice invocation string if configured
|
|
commandline=(${ionice}opusdec)
|
|
# Encode any literal newlines in the filename as the SQL-safe inline
|
|
# marker
|
|
commandline+=("$sourcepath/${filename//$'\n'/::AtOM:NewLine:SQL:Inline::}" "$tempdir/$tmpfile.wav")
|
|
}
|