See the Security and Bug Fixes Section - Grub EFI Install Updates Fix Sticky


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[solved] ffmpeg on multiple .aac files in directory using find
#2
Update:

I have got help on this on a local forum. I didn't get a solution that I could just enter directly in Terminal, but I got help with a sample shell script that I managed to:
  • Run ffmpeg on all files in current dir
  • Using touch command to set tate for converted files similar to the original file
  • Renaming files so that the original files change the name.
Code:
#!/bin/bash
for i in *.aac
do
    echo ""
    ffmpeg -i "$i" -vn -c:a copy "NEW_$i"
    touch -cm --reference="$i" "NEW_$i"
    mv "$i" "OLD $i"
    mv "NEW_$i" "$i"
    echo ""
done
I won't let an old, but fully functional computer die just because some company tell me that they won't make no more security updates to their OS. Thanks Linux Smile
Reply


Messages In This Thread
Re: [solved] ffmpeg on multiple .aac files in directory using find - by Sprintrdriver - 08-07-2019, 04:37 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)