Relative Content

Tag Archive for ff

How to stop ffplay in command line

subprocess.Popen( f””{self.ffplay_path}” “{self.video_path}”” + f” -noborder -left {dx} -top {dy} -x {dvw} -y {dvh} -loop 0″ + f” -loglevel quiet{‘ -an’ if self.disable_audio else ”}”, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True) I launched ffplay in the command line to play the video. But how to pause the playback in the program? Thank you for your suggestions! I […]

How to stop ffplay in command line

subprocess.Popen( f””{self.ffplay_path}” “{self.video_path}”” + f” -noborder -left {dx} -top {dy} -x {dvw} -y {dvh} -loop 0″ + f” -loglevel quiet{‘ -an’ if self.disable_audio else ”}”, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True) I launched ffplay in the command line to play the video. But how to pause the playback in the program? Thank you for your suggestions! I […]