Tian Gao
Tian Gao
这我还真不确定是什么情况,没遇到过……我对ffmpeg其实没有那么熟悉,看起来是在做pitch那个视频的时候出的错。
哎,你的matplotlib version是多少?是最新的么?
看起来是因为你ffprobe那一步出问题了。你在command line里做`ffprobe -v error -select_streams v:0 -show_entries stream=width,height -of csv=s=x:p=0 GANBEI.mp4`结果是啥
看起来是你ffprobe的bug,输出不应该有最后的那个x才对……试着更新一下ffmpeg?
Can you provide a minimum reproducing example so I can take a look at it?
The root cause is my monkey patch to `subprocess.Popen` when `shell=True`. I fixed it in #434 and it will be out in the next release. In the mean time, if...
No problem :)
This is tricky, because after PEP 669, the reference `PyEval_GetLocals()` gets, is the only reference, for the function-level cases. We used to have a `f_locals` dict in the frame to...
I had a fix in #119769. It's not the prettiest solution, but it should work. We don't have a plan to deprecate this API yet, but it should be discouraged...
I think it's better to keep the behavior of `PyEval_GetLocals()` (return a dict, not a proxy). `PyEval_GetLocals()` should be equivalent to `locals()` except for the borrowed reference. `PyEval_GetFrameLocals()` is strictly...