From c13b0ce8d1c5a62377c8a4807dd7b6f403bd8e39 Mon Sep 17 00:00:00 2001 From: Steven Baltakatei Sandoval Date: Tue, 26 Jul 2022 19:34:24 +0000 Subject: [PATCH] chore(user/convert_file_to_flac.sh):Note version number of depends --- user/convert_file_to_flac.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/user/convert_file_to_flac.sh b/user/convert_file_to_flac.sh index c5540b1..cc6c621 100644 --- a/user/convert_file_to_flac.sh +++ b/user/convert_file_to_flac.sh @@ -1,11 +1,11 @@ -#!/bin/bash +#!/usr/bin/env bash # Desc: Converts file readable by ffmpeg to FLAC audio file # Usage: convert_file_to_flac.sh [path] -# Version: 0.0.2 +# Version: 0.0.3 # Ref/Attrib: [1] Convert audio file to FLAC with ffmpeg? https://superuser.com/a/802126 # [2] How to specify flac compression level when converting with avconv? https://askubuntu.com/questions/544651/ # [3] How can I extract audio from video with ffmpeg? https://stackoverflow.com/a/27413824 -# Depends: ffmpeg, ffprobe +# Depends: ffmpeg version 4.4.2, ffprobe version 4.4.2, bash version 5.1.16 declare -Ag appRollCall # Associative array for storing app status declare -Ag fileRollCall # Associative array for storing file status -- 2.30.2