windows 10 python 3.7 ffmpeg inconnu
command = f'ffmpeg -i "{file_path}" -vf crop={Xl}:{Yl}:{Xs}:{Ys} "{out_path}"'
subprocess.call([command], shell=True)
J'essaye d'exécuter une commande pour recadrer un fichier vidéo. Mais le message d'erreur est ...
The system cannot find the path specified.
Cependant, le fichier existe toujours, et quand j'imprime (commande) et l'exécute à l'invite de commande, il réussit.
command = f'ffmpeg -i "{file_path}" -vf crop={Xl}:{Yl}:{Xs}:{Ys} "{out_path}"'
subprocess.call(command, shell=True)
C'était réparé
J'étais accro à cela pendant environ 2 heures, alors ...
Recommended Posts