मैंने यहां (और शायद कुछ अन्य साइटों पर) पाया सब कुछ ले लिया और न केवल एमपी 3 के फ्लैक्स को पुन: बनाने के लिए एक छोटा सा उपकरण बनाया, बल्कि उन्हें मल्टीथ्रेड समर्थन के साथ कहीं और बनाने के लिए सापेक्ष पथों को संरक्षित किया।
ओह, और हाँ, मैं देख रहा हूँ, मैंने उस मामले में ffmpeg का उपयोग नहीं किया, क्योंकि मेरे OSMC ने ffmpeg के लिए पैकेज उपलब्ध नहीं कराया, केवल avconv, लेकिन चूंकि आप पहले से ही यहाँ हैं, मुझे लगता है कि आप जानते हैं, यह "मूल रूप से" है वही - कम से कम सबसे महत्वपूर्ण भाग के लिए। बस "ffmpeg" के साथ "avconv" कमांड को बदलें। मेरे पहले रन ffmpeg बिन और सटीक समान विकल्पों के साथ थे।
मैं किसी भी तरह से बैश हैकर नहीं हूं, लेकिन मैंने इसे प्रबंधित किया, क्योंकि दिए गए मांगों के साथ मेरी पहली बैशस्क्रिप्ट है, और शायद किसी को फायदा होगा। मैं आपकी ओर से किसी भी सुझाव के लिए खुला हूं, लेकिन अभी तक यह मेरे लिए काम करता है।
मेरी स्क्रिप्ट 4 उदाहरणों को स्पिन करने के लिए, प्रत्येक कोर के लिए एक इस तरह है:
#!/bin/bash
# this should be quite self-explanatory
for i in {1..4}
do
echo "started instance no: $i"
/home/osmc/transform.sh . &
# sleeping time can be shorter, this is just so, that
# not all 4 processes will want to start with the same
# file, during runtime collisions should not become an issue
sleep 5
done
echo "all instances started"
और कार्यकर्ता स्क्रिप्ट इस तरह:
#!/bin/bash
# take care of spaces
IFS=$'\n'
# my music folders, remote is the source, local the target dir
remote=/mnt/music/FLAC
local=/mnt/1tb/mp3
# for all flac files start loop
for i in $(find $remote -type f -iname '*.flac' );
do
## SET VARIABLES for PATHS and FILENAMES
## this might be able to be super short with sed and complex one-liner,
## but I s*ck at regex
fullfile=$i
# strip extension
filename="${i##*/}"
# add new extension
filename="${filename%.*}.mp3"
# get full dirname from inputfile
fulldir=$(dirname "${i}")
# strip leading dirs from full input dir
# count the dirs, add two, then you're good.
reldir="$(echo $fulldir | cut -d'/' -f5-)"
# some subdirs in my collection even have a flac subdir, you might
# ignore this, it strips only if it exists
reldir=${reldir//flac}
# combine target dir and relative dir
outdir="$local/$reldir"
# generate the full output filename for conversion
outfile="$outdir/$filename"
# create whole target directory - yes, I need it only once, but hey,
# it works, didn't want to start a if not exist statement... should I?
mkdir -p "$outdir"
# run conversion - finally... you may want or need to replace
# "avconv" with "ffmpeg"
avconv -n -nostats -loglevel info -i "$fullfile" -codec:a libmp3lame -qscale:a 0 "$outfile"
done
जो https://github.com/erdnuesse/flac-to-mp3 पर पाया जा सकता है
सादर, के