You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error 'NoneType' object has no attribute 'write_audiofile' occuring on line video.subclip(start_time, end_time).audio.write_audiofile(audio_path, codec='pcm_s16le')
Could probably fix with a simple none check
audio = video.subclip(start_time, end_time).audio
if audio is None:
transcription = None
else:
audio.write_audiofile(audio_path, codec='pcm_s16le')
...
The text was updated successfully, but these errors were encountered:
error
'NoneType' object has no attribute 'write_audiofile'
occuring on linevideo.subclip(start_time, end_time).audio.write_audiofile(audio_path, codec='pcm_s16le')
Could probably fix with a simple none check
The text was updated successfully, but these errors were encountered: