This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
macbookpro10:Downloads $ ./odin4_mac -a SAMFW.COM_SM-F721U_TMB_F721USQS3EWL9_fac/AP_F721USQS3EWL9_F721USQS3EWL9_MQB75504391_REV00_user_low_ship_MULTI_CERT_meta_OS14.tar.md5 -b SAMFW.COM_SM-F721U_TMB_F721USQS3EWL9_fac/BL_F721USQS3EWL9_F721USQS3EWL9_MQB75504391_REV00_user_low_ship_MULTI_CERT.tar.md5 -c SAMFW.COM_SM-F721U_TMB_F721USQS3EWL9_fac/CP_F721USQS3EWL9_CP25667274_MQB75504391_REV00_user_low_ship_MULTI_CERT.tar.md5 -s SAMFW.COM_SM-F721U_TMB_F721USQS3EWL9_fac/HOME_CSC_OYN_F721UOYN3EWL9_MQB75504391_REV00_user_low_ship_MULTI_CERT.tar.md5 -u SAMFW.COM_SM-F721U_TMB_F721USQS3EWL9_fac/USERDATA_XAU_F721USQS3EWL9_F721USQS3EWL9_MQB75504391_REV00_user_low_ship_MULTI_CERT.tar.md5 | |
Check file : SAMFW.COM_SM-F721U_TMB_F721USQS3EWL9_fac/AP_F721USQS3EWL9_F721USQS3EWL9_MQB75504391_REV00_user_low_ship_MULTI_CERT_meta_OS14.tar.md5 | |
Check file : SAMFW.COM_SM-F721U_TMB_F721USQS3EWL9_fac/BL_F721USQS3EWL9_F721USQS3EWL9_MQB75504391_REV00_user_low_ship_MULTI_CERT.tar.md5 | |
Check file : SAMFW.COM_SM-F721U_TMB_F721USQS3EWL9_fac/CP_F721 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for mp4 in *.mp4 | |
do | |
echo "Processing $mp4" | |
ffmpeg -i $mp4 -ar 16000 -ac 1 -c:a pcm_s16le $mp4.wav | |
~/Documents/Dev/whisper.cpp-1.2.1/main -m ~/Documents/Dev/whisper.cpp-1.2.1/models/ggml-large.bin -osrt -t 8 -f "$mp4.wav" | |
rm $mp4.wav | |
done |