ffprobe -v quiet -print_format json -show_format -show_streams -print_format json "file.mp4"
ffmpeg -i file.mp4 -c:v libx264 -crf 23 -preset medium -c:a copy file_fixed.mp4
Use MacWhisper
ffprobe -v quiet -print_format json -show_format -show_streams -print_format json "file.mp4"
ffmpeg -i file.mp4 -c:v libx264 -crf 23 -preset medium -c:a copy file_fixed.mp4
Use MacWhisper
| #!/usr/bin/python | |
| """ | |
| Hash Tables | |
| Usage : | |
| 'python -i hashex.py' | |
| The goal of a hash table is to map a keyword to a placeholder that contains the value you stored. | |
| We will define 3 functions : |