def stopAudioCapture(): if audio_process != None: watchdog.stop('FFmpegAudioProcess') stopFFMPEG(audio_process)
def stopAudioCapture(): if audio_process != None: watchdog.stop('FFmpegAudioProcess') audio_process.terminate()
def stopVideoCapture(): if video_process != None: watchdog.stop('FFmpegCameraProcess') stopFFMPEG(video_process)
def stopVideoCapture(): if video_process != None: watchdog.stop('FFmpegCameraProcess') video_process.terminate()