มีซอฟต์แวร์ตรวจจับจังหวะใดสำหรับ Linux? [ปิด]


29

Amarok 2 สามารถค้นหาผ่านคอลเลคชันเพลงโดยใช้ฟิลด์ 'bpm' ของแท็ก ID3v2 นั่นเป็นเรื่องที่ดีมากในการติดแท็กคอลเล็คชั่นเพลงทั้งหมดใหม่อีกครั้งดังนั้นฉันจึงสามารถค้นหา 'อารมณ์' ของแทร็กที่ฉันชอบ

อย่างไรก็ตามฉันไม่พบซอฟต์แวร์ตรวจจับจังหวะที่อาจช่วยฉันได้ คุณเคยใช้หรือไม่? CLI โดยเฉพาะอย่างยิ่ง ฉันสนใจด้วยหากมีสิ่งใดที่เหมือนกันสำหรับการติดแท็ก FLAC ด้วยฟิลด์ 'bpm' เดียวกัน

ขอบคุณ! :)

ป.ล. ฉันรู้ว่ามีฟีเจอร์แถบอารมณ์ที่ดี แต่ก็ไม่มีประโยชน์สำหรับการค้นหา


3
คุณเห็นหน้านี้หรือไม่ mmartins.com/mmartins/bpmdetection/bpmdetection.asp ดูเหมือนว่าสิ่งที่คุณกำลังมองหา
DaveParillo

@DaveParillo ว่า "อารมณ์ของแทร็ค" การเชื่อมโยงคือการเชื่อมโยงไปยังฮาร์ดดิสก์ของคุณและเป็นเช่นนี้ไม่มีประโยชน์กับทุกคน แต่คุณ
จัสตินสมิ ธ

@Justin Smith เขาหมายถึงไฟล์ใน BpmDj docs :) นี่คือเวอร์ชันออนไลน์: bpmdj.yellowcouch.org/clustering.html
kolypto

@ จัสติน - ขอโทษ - นิ้วเรียกกระตุกฉันเดา
DaveParillo

คำตอบ:


17

ที่เว็บไซต์ DaveParillo แนะนำให้ฉันพบโครงการBpmDjแล้ว มันมีbpmcountไฟล์ประมวลผลที่คำนวณ bpm เป็นอย่างดี: มันจัดการ mp3 และ flac:

161.135 Metallica/2008 - Death Magnetic/01-That Was Just Your Life.flac
63.5645 Doom3.mp3

สิ่งเดียวที่เหลือคือการติดแท็กชุดใหม่ ฉันจะอัปเดตคำตอบนี้เมื่อใดก็ตามที่ฉันประสบความสำเร็จ ขอบคุณ! :)


ขั้นตอนที่ 1

ทำงานbpmcountกับคอลเลกชันทั้งหมดและเก็บผลลัพธ์ลงในเท็กซ์ไฟล์ ปัญหาคือbpmcountข้อผิดพลาดเป็นครั้งคราวและพยายามที่จะกินหน่วยความจำมากถึง 2GB เมื่อมันประมวลผลหลายไฟล์ดังนั้นเราควรฟีดมันด้วยชื่อไฟล์ทีละคน อย่างนี้:

musicdir='/home/ootync/music'
find "$musicdir" -iregex ".*\.\(mp3\|ogg\|flac\|ape\)" -exec bpmcount {} \; \
    | fgrep "$musicdir" > "$musicdir/BPMs.txt"

ขั้นตอนที่ 2

apt-get install vorbis-tools flac python-mutagenเราจะต้องแพคเกจเพิ่มเติม: ตอนนี้ดูที่วิธีการเพิ่มแท็ก 'bpm':

mid3v2 --TBPM 100 doom3.mp3
vorbiscomment -a -t "BPM=100" mother.ogg
metaflac --set-tag="BPM=100" metallica.flac

อนิจจาฉันไม่มีแทร็ค * .ape

ตอนนี้เรามี BPM และการสะสมทั้งหมดควรได้รับการติดซ้ำ นี่คือสคริปต์:

cat "$musicdir/BPMs.txt" | while read bpm file ; do
    bpm=`printf "%.0f" "$bpm"` ;
    case "$file" in 
        *.mp3) mid3v2 --TBPM "$bpm" "$file" > /dev/null ;; 
        *.ogg) vorbiscomment -a -t "BPM=$bpm" "$file" ;; 
        *.flac) metaflac --set-tag="BPM=$bpm" "$file" ;; 
        esac
    done

ขั้นตอนที่ 2.1 มาที่ นี่คือสคริปต์ที่จะเพิ่มแท็ก BPM ในคอลเลกชันของคุณ

มันรันหนึ่งกระบวนการต่อซีพียูคอร์เพื่อทำให้กระบวนการเร็วขึ้น นอกจากนี้ยังไม่มีไฟล์ชั่วคราวและสามารถตรวจจับได้ว่ามีไฟล์ที่ติดแท็กแล้วหรือไม่

นอกจากนี้ฉันได้ค้นพบว่าบางครั้ง FLAC มีทั้ง ID3 และ VorbisComment อยู่ข้างใน สคริปต์นี้อัปเดตทั้งคู่

#!/bin/bash

function display_help() {
    cat <<-HELP
            Recursive BPM-writer for multicore CPUs.
            It analyzes BPMs of every media file and writes a correct tag there.
            Usage: $(basename "$0") path [...]
            HELP
    exit 0
    }

[ $# -lt 1 ] && display_help

#=== Requirements
requires="bpmcount mid3v2 vorbiscomment metaflac"
which $requires > /dev/null || { echo "E: These binaries are required: $requires" >&2 ; exit 1; }

#=== Functions

function bpm_read(){
    local file="$1"
    local ext="${file##*.}"
    declare -l ext
    # Detect
    { case "$ext" in
        'mp3')  mid3v2 -l "$file" ;;
        'ogg')  vorbiscomment -l "$file" ;;
        'flac') metaflac --export-tags-to=- "$file" ;;
        esac ; } | fgrep 'BPM=' | cut -d'=' -f2
    }
function bpm_write(){
    local file="$1"
    local bpm="${2%%.*}"
    local ext="${file##*.}"
    declare -l ext
    echo "BPM=$bpm @$file"
    # Write
    case "$ext" in
        'mp3')  mid3v2 --TBPM "$bpm" "$file" ;;
        'ogg')  vorbiscomment -a -t "BPM=$bpm" "$file" ;;
        'flac') metaflac --set-tag="BPM=$bpm" "$file"
                mid3v2 --TBPM "$bpm" "$file" # Need to store to ID3 as well :(
                ;;
        esac
    }

#=== Process
function oneThread(){
    local file="$1"
    #=== Check whether there's an existing BPM
        local bpm=$(bpm_read "$file")
        [ "$bpm" != '' ] && return 0 # there's a nonempty BPM tag
    #=== Detect a new BPM
    # Detect a new bpm
    local bpm=$(bpmcount "$file" | grep '^[0-9]' | cut -f1)
    [ "$bpm" == '' ] && { echo "W: Invalid BPM '$bpm' detected @ $file" >&2 ; return 0 ; } # problems
    # Write it
    bpm_write "$file" "${bpm%%.*}" >/dev/null
    }

NUMCPU="$(grep ^processor /proc/cpuinfo | wc -l)"
find $@ -type f -regextype posix-awk -iregex '.*\.(mp3|ogg|flac)' \
    | while read file ; do
        [ `jobs -p | wc -l` -ge $NUMCPU ] && wait
        echo "$file"
        oneThread "$file" &
        done

สนุก! :)


ยอดเยี่ยม เมื่อคืนนี้ฉันไม่ได้ลองเลย สำหรับการติดแท็กบรรทัดคำสั่งให้ลอง mid3v2: linux.die.net/man/1/mid3v2ซึ่งสามารถให้บริการได้อย่างน้อยจนกระทั่ง Ex Falso รองรับการแก้ไขบรรทัดคำสั่ง id3v2 tad id คือTBPM
DaveParillo

1
ขอบคุณฉันจะลองอีกสองสามวันและโพสต์ผลลัพธ์ :) ฉันสงสัยว่า FLAC สนับสนุนสิ่งนี้หรือไม่: ฉันจะต้องตรวจสอบสิ่งนี้
kolypto

1
ทำงานได้ดีในขั้นตอนที่ 2 หวังว่าฉันจะสามารถโหวตได้สองครั้ง!
DaveParillo

1
ขอบคุณ :) อนิจจา Amarok ของฉันไม่ได้สังเกตเห็นแท็กใหม่ใน FLAC ที่ฉันชอบมากที่สุด :)) ส่งข้อผิดพลาด
kolypto

คุณติดตั้งมันได้อย่างไร? รอบต่อนาทีที่พวกเขาให้ดูเหมือนจะไม่ทำงานในคอมพิวเตอร์ของฉันและฉันกำลังดิ้นรนกับการรวบรวม
pedrosaurio

8

นี่เป็นเครื่องมือบรรทัดคำสั่งเพื่อตรวจจับ BPM และวางไว้ในแท็กไฟล์ FLAC:

http://www.pogo.org.uk/~mark/bpm-tools/


รุ่นล่าสุดยังจัดการ mp3s และ ogg vorbis
เข้ารหัส

Ubuntu มีแพ็คเกจ bpm-toolsพร้อมให้ใช้งานอย่างปลอดภัย
naught101

6

ฉันใช้สคริปต์ต้นฉบับของ kolypto โดยใช้bpmcountและเขียนใหม่สำหรับbpm-tag(โปรแกรมอรรถประโยชน์bpm-tools) ซึ่งฉันโชคดีกว่าเมื่อติดตั้ง ฉันยังปรับปรุงตัวเองบ้าง

คุณสามารถค้นหาได้ใน GitHub https://github.com/meridius/bpmwrap


จำเป็นต้องมีการแก้ไขเล็กน้อยเพื่อทำงานบน Mac ซึ่งฉันได้รวมไว้ในคำตอบของฉันเองด้านล่าง (เพราะมันยาวเกินไปสำหรับความคิดเห็น)
Adrian

2

ผมไม่ทราบว่าเครื่องมือที่ไม่ตรงกับสิ่งที่คุณกำลังมองหา แต่ฉันได้เล่นรอบกับMusicIP

ใช้เวอร์ชัน linux / java - ใช้เวลานานในการวิเคราะห์คลังเพลงอย่างสมบูรณ์ แต่ใช้งานได้จริง คุณสามารถค้นหาเพลงที่คล้ายกับเพลงอื่น ๆ คุณสามารถคลิกขวาที่เพลย์ลิสต์ที่สร้างขึ้นและเลือกตัวเลือกเพื่อเลือกเพลงมากขึ้นหรือน้อยลงเช่นเดียวกับที่เลือก คุณยังสามารถเลือกที่จะกำจัดประเภทบางประเภท มันเจ๋งมาก แต่หลังจากปัจจัยว้าวสวมออกฉันหยุดใช้มัน

รุ่นฟรีส่งออกเพลย์ลิสต์สูงสุด 75 เพลงในรูปแบบ (อย่างน้อย) m3u

มันได้รับการสนับสนุนในขณะนี้ แต่ฉันคิดว่าพวกเขาได้พยายามที่จะใช้มันในเชิงพาณิชย์เป็นPredexis


1

ในขณะที่มันไม่ได้เป็นเพียงเครื่องมืออย่างที่คุณบอกว่าคุณกำลังมองหาเครื่องเล่น Bansheeสามารถตรวจจับ bpm

ฉันใช้ Banshee สำหรับการเล่นเพลงการจัดระเบียบและซิงโครไนซ์กับเครื่องเล่นพกพา ฉันไม่ได้เข้าร่วม แต่ชอบโปรแกรมที่ดีที่สุดเท่าที่ฉันเคยลอง นอกจากนี้ยังสามารถสร้าง "เพลย์ลิสต์อัจฉริยะ" ตามคุณสมบัติทุกประเภทของแทร็กรวมถึง bpm

มีส่วนขยายที่วิเคราะห์สิ่งต่าง ๆ เกี่ยวกับเพลงและจะค้นหาเพลงที่คล้ายกับเพลงที่คุณกำลังเล่น เรียกว่าMirageและฉันใช้ไปซักพัก แต่ฉันก็ไม่ได้ทำอะไรอีกแล้วเพราะฉันได้สร้างเพลย์ลิสต์ของเพลงที่เหมาะกับอารมณ์ต่าง ๆ (ไม่จำเป็นต้องคล้ายกับ Mirage)

ฉันไม่ทราบว่า Banshee จะบันทึก bpm ที่ตรวจพบกลับเข้าไปในแท็ก ID3v2 "bpm" ของไฟล์หรือไม่ หากใครรู้วิธีการตรวจสอบแท็ก bpm จากนอกโปรแกรมได้อย่างง่ายดายฉันจะตรวจสอบ



0

ฉันพบเครื่องมืออื่นสำหรับการแท็กไฟล์ MP3 ด้วยค่า BPM ที่ถูกต้อง

มันเรียกว่าBPMDetect โอเพ่นซอร์ส. QT libs ใช้งานได้ดีภายใต้ Gnome มาพร้อมกับ GUI แต่สามารถรวบรวมเป็นคอนโซลรุ่นเดียว (เรียกใช้ "scons console = 1" ตามที่ระบุไว้ใน readme.txt)

มิฉะนั้นในที่สุดฉันก็ใช้ "bpmcount" จาก BpmDJ เพราะฉันมีปัญหาในการรวบรวม BPMDetect บนโฮสต์ Ubuntu 64 บิต (เนื่องจากการพึ่งพา fmodex) ดังนั้นฉันจึงใช้เชลล์สคริปต์ (เจ๋งมากและเป็นที่เขียนดี) ด้านบน (ดูด้านล่าง) ไบนารี "bpmcount" ที่แยกจาก [x64 .rpm] [3] มีอยู่ในเว็บไซต์ BpmDJ (ฉันเพิ่งแยก. rpm กับ

pm2cpio bpmdj-4.2.pl2-0.x86_64.rpm|cpio -idv

และมันใช้งานได้อย่างมีเสน่ห์ ฉันแค่ต้องแก้ไขสคริปต์ข้างต้นเพราะมันไม่ได้ทำงานอยู่ข้างฉัน (มีปัญหากับ stdout / stderr ของไบนารี bpmcount) การดัดแปลงของฉันเกี่ยวกับการเปลี่ยนเส้นทางไฟล์:

local bpm=$(bpmcount "$file" 3>&1 1>/dev/null 2>&3 | grep '^[0-9]' | cut -f1)

0

มีเครื่องมืออื่นแนะนำในคำถามนี้ใน stackoverflow: aubioซึ่งมาพร้อมกับโมดูลหลาม

ฉันไม่ได้พยายามมันเพราะผมครับดูแลไม่ว่างของการรวบรวมBpmDj ในกรณีที่คนอื่นพบว่าตัวเองกำลังดิ้นรนปัญหาที่คล้ายกันในขณะที่พยายามฉันขอแนะนำอย่างยิ่งเพื่อให้แน่ใจว่า:

  1. ต้องดาวน์โหลดรุ่นล่าสุดของแหล่ง BpmDj
  2. มีการติดตั้งบูสเตอร์บูสเตอร์ที่เหมาะสม

ด้วยการอัพเกรดคอมไพเลอร์ g ++ ล่าสุดปัญหาบางอย่างดูเหมือนจะเกิดขึ้นโดยเฉพาะอย่างยิ่งเกี่ยวกับเดเบียนและอูบุนตูรุ่นล่าสุด ทันทีที่เขาเริ่มตระหนักถึงปัญหาเหล่านี้ผู้เขียนก็มีน้ำใจที่จะแก้ไขปัญหาความไม่ลงรอยกันที่เกิดขึ้นและรวบรวมการเปิดตัวใหม่ซึ่งตอนนี้รวบรวมเหมือนเสน่ห์ ดังนั้นใครก็ตามที่ใกล้จะตกอยู่ในความสิ้นหวังในเรื่องข้อผิดพลาดในการคอมไพล์อย่างไม่หยุดยั้งเมื่อเร็ว ๆ นี้: คุณได้รับการบันทึกทันที

@ mmxเครื่องมือของคุณก็ดูดีเช่นกัน แต่พวกเขาก็พึ่งพาSoXซึ่งโดยปกติแล้วจะไม่มีฟีเจอร์ mp3 ดังนั้นพวกเขาจำเป็นต้องรวบรวม SoX ด้วยการสนับสนุน Lame / MAD ก่อนซึ่งน่าเสียดายที่ความพยายามมากเกินไปสำหรับคนขี้เกียจอย่างฉัน


0

เพื่อให้โซลูชันของ @meridius ทำงานบน Mac ของฉันฉันต้องทำ legwork เพิ่มเติมเล็กน้อยและแก้ไขสคริปต์เล็กน้อย:

# Let's install bpm-tools
git clone http://www.pogo.org.uk/~mark/bpm-tools.git
cd bpm-tools
make && make install
# There will be errors, but they did not affect the result

# The following three lines could be replaced by including this directory in your $PATH
ln -s <absolute path to bpm-tools>/bpm /usr/local/bin/bpm
ln -s <absolute path to bpm-tools>/bpm-tag /usr/local/bin/bpm-tag
ln -s <absolute path to bpm-tools>/bpm-graph /usr/local/bin/bpm-graph
cd ..

# Time to install a bunch of GNU tools
# Not all of these packages are strictly necessary for this script, but I decided I wanted the whole GNU toolchain in order to avoid this song-and-dance in the future
brew install coreutils findutils gnu-tar gnu-sed gawk gnutls gnu-indent gnu-getopt bash flac vorbis-tools
brew tap homebrew/dupes; brew install grep

# Now for Mutagen (contains mid3v2)
git clone https://github.com/nex3/mutagen.git
cd mutagen
./setup.py build
sudo ./setup.py install
# There will be errors, but they did not affect the result
cd ..

จากนั้นฉันต้องแก้ไขสคริปต์ให้ชี้ไปที่เวอร์ชัน GNU ของทุกสิ่งและการปรับแต่งอื่น ๆ :

#!/usr/local/bin/bash

# ================================= FUNCTIONS =================================

function help() {
    less <<< 'BPMWRAP

Description:
    This BASH script is a wrapper for bpm-tag utility of bpm-tools and several
    audio tagging utilities. The purpose is to make BPM (beats per minute)
    tagging as easy as possible.
    Default behaviour is to look through working directory for *.mp3 files
    and compute and print their BPM in the following manner:
        [current (if any)] [computed] [filename]

Usage:
    bpmwrap [options] [directory or filenames]

Options:
    You can specify files to process by one of these ways:
        1) state files and/or directories containing them after options
        2) specify --import file
        3) specify --input file
    With either way you still can filter the resulting list using --type option(s).
    Remember that the script will process only mp3 files by default, unless
    specified otherwise!

    -i, --import file
        Use this option to set BPM tag for all files in given file instead of
        computing it. Expected format of every row is BPM number and absolute path
        to filename separated by semicolon like so:
            145;/home/trinity/music/Apocalyptica/07 beyond time.mp3
        Remember to use --write option too.
    -n, --input file
        Use this option to give the script list of FILES to process INSTEAD of paths
        where to look for them. Each row whould have one absolute path.
        This will bypass the searching part and is that way useful when you want
        to process large number of files several times. Like when you are not yet
        sure what BPM limits to set. Extension filtering will still work.
    -o, --output file
        Save output also to a file.
    -l, --list-save file
        Save list of files about to get processed. You can use this list later
        as a file for --input option.
    -t, --type filetype
        Extension of file type to work with. Defaults to mp3. Can be specified
        multiple times for more filetypes. Currently supported are mp3 ogg flac.
    -e, --existing-only
        Only show BPM for files that have it. Do NOT compute new one.
    -w, --write
        Write computed BPM to audio file but do NOT overwrite existing value.
    -f, --force
        Write computed BPM to audio file even if it already has one. Aplicable only
        with --write option.
    -m, --min minbpm
        Set minimal BPM to look for when computing. Defaults to bpm-tag minimum 84.
    -x, --max maxbpm
        Set maximal BPM to look for when computing. Defaults to bpm-tag maximum 146.
    -v, --verbose
        Show "progress" messages.
    -c, --csv-friendly
        Use semicolon (;) instead of space to separate output columns.
    -h, --help
        Show this help.

Note:
    Program bpm-tag (on whis is this script based) is looking only for lowercase
    file extensions. If you get 0 (zero) BPM, this should be the case. So just
    rename the file.

License:
    GPL V2

Links:
    bpm-tools (http://www.pogo.org.uk/~mark/bpm-tools/)

Dependencies:
    bpm-tag mid3v2 vorbiscomment metaflac

Author:
    Martin Lukeš (martin.meridius@gmail.com)
    Based on work of kolypto (http://superuser.com/a/129157/137326)
    '
}

# Usage: result=$(inArray $needle haystack[@])
# @param string needle
# @param array haystack
# @returns int (1 = NOT / 0 = IS) in array
function inArray() {
    needle="$1"
    haystack=("${!2}")
    out=1
    for e in "${haystack[@]}" ; do
        if [[ "$e" = "$needle" ]] ; then
            out=0
            break
        fi
    done
    echo $out
}

# Usage: result=$(implode $separator array[@])
# @param char separator
# @param array array to implode
# @returns string separated array elements
function implode() {
    separator="$1"
    array=("${!2}")
    IFSORIG=$IFS
    IFS="$separator"
    echo "${array[*]}"
    IFS=$IFSORIG
}

# @param string file
# @returns int BPM value
function getBpm() {
    local file="$1"
    local ext="${file##*.}"
    declare -l ext # convert to lowercase
    { case "$ext" in
        'mp3')  mid3v2 -l "$file" ;;
        'ogg')  vorbiscomment -l "$file" ;;
        'flac') metaflac --export-tags-to=- "$file" ;;
    esac ; } | fgrep 'BPM=' -a | cut -d'=' -f2
}

# @param string file
# @param int BPM value
function setBpm() {
    local file="$1"
    local bpm="${2%%.*}"
    local ext="${file##*.}"
    declare -l ext # convert to lowercase
    case "$ext" in
        'mp3')  mid3v2 --TBPM "$bpm" "$file" ;;
        'ogg')  vorbiscomment -a -t "BPM=$bpm" "$file" ;;
        'flac') metaflac --set-tag="BPM=$bpm" "$file"
            mid3v2 --TBPM "$bpm" "$file" # Need to store to ID3 as well :(
        ;;
    esac
}

# # @param string file
# # @returns int BPM value
function computeBpm() {
    local file="$1"
    local m_opt=""
    [ ! -z "$m" ] && m_opt="-m $m"
    local x_opt=""
    [ ! -z "$x" ] && x_opt="-x $x"
    local row=$(bpm-tag -fn $m_opt $x_opt "$file" 2>&1 | fgrep "$file")
    echo $(echo "$row" \
        | gsed -r 's/.+ ([0-9]+\.[0-9]{3}) BPM/\1/' \
        | gawk '{printf("%.0f\n", $1)}')
}

# @param string file
# @param int file number
# @param int BPM from file list given by --import option
function oneThread() {
    local file="$1"
    local filenumber="$2"
    local bpm_hard="$3"
    local bpm_old=$(getBpm "$file")
    [ -z "$bpm_old" ] && bpm_old="NONE"
    if [ "$e" ] ; then # only show existing
        myEcho "$filenumber/$NUMFILES${SEP}$bpm_old${SEP}$file"
    else # compute new one
        if [ "$bpm_hard" ] ; then
            local bpm_new="$bpm_hard"
        else
            local bpm_new=$(computeBpm "$file")
        fi
        [ "$w" ] && { # write new one
            if [[ ! ( ("$bpm_old" != "NONE") && ( -z "$f" ) ) ]] ; then
                setBpm "$file" "$bpm_new"
            else
                [ "$v" ] && myEcho "Non-empty old BPM value, skipping ..."
            fi
        }
        myEcho "$filenumber/$NUMFILES${SEP}$bpm_old${SEP}$bpm_new${SEP}$file"
    fi
}

function myEcho() {
    [ "$o" ] && echo -e "$1" >> "$o"
    echo -e "$1"
}


# ================================== OPTIONS ==================================

eval set -- $(/usr/local/Cellar/gnu-getopt/1.1.6/bin/getopt -n $0 -o "-i:n:o:l:t:ewfm:x:vch" \
    -l "import:,input:,output:,list-save:,type:,existing-only,write,force,min:,max:,verbose,csv-friendly,help" -- "$@")

declare i n o l t e w f m x v c h
declare -a INPUTFILES
declare -a INPUTTYPES
while [ $# -gt 0 ] ; do
    case "$1" in
        -i|--import)                shift ; i="$1" ; shift ;;
        -n|--input)                 shift ; n="$1" ; shift ;;
        -o|--output)                shift ; o="$1" ; shift ;;
        -l|--list-save)         shift ; l="$1" ; shift ;;
        -t|--type)                  shift ; INPUTTYPES=("${INPUTTYPES[@]}" "$1") ; shift ;;
        -e|--existing-only) e=1 ; shift ;;
        -w|--write)                 w=1 ; shift ;;
        -f|--force)                 f=1 ; shift ;;
        -m|--min)                       shift ; m="$1" ; shift ;;
        -x|--max)                       shift ; x="$1" ; shift ;;
        -v|--verbose)               v=1 ; shift ;;
        -c|--csv-friendly)  c=1 ; shift ;;
        -h|--help)                  h=1 ; shift ;;
        --)                                 shift ;;
        -*)                                 echo "bad option '$1'" ; exit 1 ;; #FIXME why this exit isn't fired?
        *)                                  INPUTFILES=("${INPUTFILES[@]}" "$1") ; shift ;;
    esac
done


# ================================= DEFAULTS ==================================

#NOTE Remove what requisities you don't need but don't try to use them after!
#         always  mp3/flac     ogg       flac
REQUIRES="bpm-tag mid3v2 vorbiscomment metaflac"
which $REQUIRES > /dev/null || { myEcho "These binaries are required: $REQUIRES" >&2 ; exit 1; }

[ "$h" ] && {
    help
    exit 0
}

[[ $m && $x && ( $m -ge $x ) ]] && {
    myEcho "Minimal BPM can't be bigger than NOR same as maximal BPM!"
    exit 1
}
[[ "$i" && "$n" ]] && {
    echo "You cannot specify both -i and -n options!"
    exit 1
}
[[ "$i" && ( "$m" || "$x" ) ]] && {
    echo "You cannot use -m nor -x option with -i option!"
    exit 1
}
[ "$e" ] && {
    [[ "$w" || "$f" ]] && {
        echo "With -e option you don't have any value to write!"
        exit 1
    }
    [[ "$m" || "$x" ]] && {
        echo "With -e option you don't have any value to count!"
        exit 1
    }
}

for file in "$o" "$l" ; do
    if [ -f "$file" ] ; then
        while true ; do
            read -n1 -p "Do you want to overwrite existing file ${file}? (Y/n): " key
            case "$key" in
                y|Y|"") echo "" > "$file" ; break ;;
                n|N)        exit 0 ;;
            esac
            echo ""
        done
        echo ""
    fi
done

[ ${#INPUTTYPES} -eq 0 ] && INPUTTYPES=("mp3")

# NUMCPU="$(ggrep ^processor /proc/cpuinfo | wc -l)"
NUMCPU="$(sysctl -a | ggrep machdep.cpu.core_count | gsed -r 's/(.*)([0-9]+)(.*)/\2/')"
LASTPID=0
TYPESALLOWED=("mp3" "ogg" "flac")
# declare -A BPMIMPORT # array of BPMs from --import file, keys are file names
declare -A BPMIMPORT # array of BPMs from --import file, keys are file names

for type in "${INPUTTYPES[@]}" ; do
    [[ $(inArray $type TYPESALLOWED[@]) -eq 1 ]] && {
        myEcho "Filetype $type is not one of allowed types (${TYPESALLOWED[@]})!"
        exit 1
    }
done

### here are three ways how to pass files to the script...
if [ "$i" ] ; then # just parse given file list and set BPM to listed files
    if [ -f "$i" ] ; then
        # myEcho "Setting BPM tags from given file ..."
        while read row ; do
            bpm="${row%%;*}"
            file="${row#*;}"
            ext="${file##*.}"
            ext="${ext,,}" # convert to lowercase
            if [ -f "$file" ] ; then
                if [ $(inArray $ext INPUTTYPES[@]) -eq 0 ] ; then
                    FILES=("${FILES[@]}" "$file")
                    BPMIMPORT["$file"]="$bpm"
                else
                    myEcho "Skipping file on row $rownumber (unwanted filetype $ext) ... $file"
                fi
            else
                myEcho "Skipping non-existing file $file"
            fi
        done < "$i"
    else
        myEcho "Given import file does not exists!"
        exit 1
    fi
elif [ "$n" ] ; then # get files from file list
    if [ -f "$n" ] ; then
        rownumber=1
        while read file ; do
            if [ -f "$file" ] ; then
                ext="${file##*.}"
                ext="${ext,,}" # convert to lowercase
                if [ $(inArray $ext INPUTTYPES[@]) -eq 0 ] ; then
                    FILES=("${FILES[@]}" "$file")
                else
                    myEcho "Skipping file on row $rownumber (unwanted filetype $ext) ... $file"
                fi
            else
                myEcho "Skipping file on row $rownumber (non-existing) ... $file"
            fi
            let rownumber++
        done < "$n"
        unset rownumber
    else
        myEcho "Given input file $n does not exists!"
        exit 1
    fi
else # get files from given parameters
    [ ${#INPUTFILES[@]} -eq 0 ] && INPUTFILES=`pwd`
    for file in "${INPUTFILES[@]}" ; do
        [ ! -e "$file" ] && {
            myEcho "File or directory $file does not exist!"
            exit 1
        }
    done
    impl_types=`implode "|" INPUTTYPES[@]`
    while read file ; do
        echo -ne "Creating list of files ... (${#FILES[@]}) ${file}\033[0K"\\r
        FILES=("${FILES[@]}" "$file")
    done < <(gfind "${INPUTFILES[@]}" -type f -regextype posix-awk -iregex ".*\.($impl_types)")
    echo -e "Counted ${#FILES[@]} files\033[0K"\\r
fi

[ "$l" ] && printf '%s\n' "${FILES[@]}" > "$l"

NUMFILES=${#FILES[@]}
FILENUMBER=1

[ $NUMFILES -eq 0 ] && {
    myEcho "There are no ${INPUTTYPES[@]} files in given files/paths."
    exit 1
}

declare SEP=" "
[ "$c" ] && SEP=";"


# =============================== MAIN SECTION ================================

if [ "$e" ] ; then # what heading to show
    myEcho "num${SEP}old${SEP}filename"
else
    myEcho "num${SEP}old${SEP}new${SEP}filename"
fi

for file in "${FILES[@]}" ; do
    [ `jobs -p | wc -l` -ge $NUMCPU ] && wait
    [ "$v" ] && myEcho "Parsing (${FILENUMBER}/${NUMFILES})\t$file ..."
    oneThread "$file" "$FILENUMBER" "${BPMIMPORT[$file]}" &
    LASTPID="$!"
    let FILENUMBER++
done

[ "$v" ] && myEcho "Waiting for last process ..."
wait $LASTPID
[ "$v" ] && myEcho \\n"DONE"

ขอบคุณสำหรับการทำงานหนักของคุณ @kolypto และ @meridius

... ความเจ็บปวดที่ฉันต้องทำเพื่อรักษาเวิร์กโฟลว์ CLI และไม่ต้องจ่ายเงินสำหรับเครื่องมือดนตรี ...

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.