Compare commits

...

2 Commits

View File

@ -130,13 +130,10 @@ cmd bulkrename ${{
lf -remote "send $id unselect"
}}
cmd encodetomp3 ${{
clear;
set -f;
is_valid_filetype=0;
#Variables for notify-send
converted_filenames="";
converted_files_count=0;
@ -145,18 +142,12 @@ cmd encodetomp3 ${{
for pickedFilepath in $fx; do
case $pickedFilepath in
*.mp4)
is_valid_filetype=1 ;;
*.webm)
is_valid_filetype=1 ;;
*.mkv)
is_valid_filetype=1 ;;
*.mp4 | *.webm | *.mkv)
;;
*)
echo 'Skipping ${pickedFilepath}' && continue 1;;
esac
if [[ is_valid_filetype -eq 0 ]]; then
echo 'Skipping ${pickedFilepath}' && continue 1 ;
fi;
parsed_MP3=$(echo "$pickedFilepath" | sed 's/\(.mp4\|.webm\|.mkv\)/.mp3/' | sed 's|.*\/||');
parsed_MP3="~/Music/${parsed_MP3}";
@ -181,12 +172,12 @@ cmd encodetomp3 ${{
#Notify the results to the user
if [[ $converted_files_count -gt 0 ]]; then
converted_filenames=$(echo "$converted_filenames" | sed 's|.*\/||');
notify-send "Converted MP3 Files($converted_files_count): $converted_filenames";
notify-send "Converted MP3 Files($converted_files_count):" "$converted_filenames";
fi;
if [[ $videos_without_audio_streams_count -gt 0 ]]; then
videos_without_audio_streams=$(echo "$videos_without_audio_streams" | sed 's|.*\/||');
notify-send "Videos without audio stream($videos_without_audio_streams_count): $videos_without_audio_streams";
notify-send "Videos without audio stream($videos_without_audio_streams_count):" "$videos_without_audio_streams";
fi;
#Uncomment the below line if you want to automatically unselect the original converted video files