08-07-2019, 04:37 PM
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:
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
