decipher
decipher copied to clipboard
feat: audio upload
if a user uploads an audio file, the script can use that instead of requiring video files.
my current process is kinda funny:
- record giant 40 GiB file
- extract audio and compress with Audacity (Tenacity)
- add a black screen to the video with
ffmpeg:ffmpeg -f lavfi -i color=c=black:s=1280x720:r=5 -i input.mp3 -crf 0 -c:a copy -shortest output.mp4 - upload that to the google colab
- wait for it to extract the audio
- then, finally, it can start the transcription process
that's not great... but yes, it does technically work