File size: 161 Bytes
7b2c089
 
 
 
 
1
2
3
4
5
6

def save_transcript(prediction, output_file):
    ## Save prediction to subtitles file format
    with open(output_file, "w") as f:
        f.write(prediction)