Skip to content
Extraits de code Groupes Projets
Valider 1a560f31 rédigé par Sting's avatar Sting
Parcourir les fichiers

Documented extractWav.sh

parent 5d44e91d
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
#!/bin/bash
##########################################################################################################
#
# COMMAND : extractWav.sh
#
# AUTHOR : Sting
#
# DESCRIPTION : CLI tool to extract audio from .mkv files and convert it to 1-channel WAV files
# Currently supported formats :
# - Video : .mkv files only, any codec supported by FFMPEG
# - Audio : AAC, FLAC, DTS, AC3, MP3 (MPEG), OPUS, VORBIS
#
# USE : ./extractWav.sh source_folder destination_folder
#
# REQUIREMENTS : Have FFMPEG and SoX installed (for audio/video decoding)
#
#
##########################################################################################################
USAGE_MESSAGE="usage : $0 source_folder dest_folder"
if [ $# != 2 ]; then
echo $USAGE_MESSAGE; exit 1;
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter