我已经开始了一个项目,其中我需要使用一个名为MuJoCoMujoco Documentation的开源软件.它是一个倾向于强化学习的物理模拟软件.由于我正在开发的应用程序是创建一个AI,为了方便起见,我也使用了python语言.

我的问题是MuJoCo使用一个名为‘mediapy’的库来可视化帧序列(视频),而这个库又使用一个名为‘ffmpeg’的库.问题是,Mediapy没有意识到我的电脑(Mac、Intel)上安装了‘ffmpeg’.当我深入到源代码中试图找到这个问题时,我发现‘mediapy’通过运行以下命令来判断‘ffmpeg’的安装:

import shutil
import typing
import os

_Path = typing.Union[str, 'os.PathLike[str]']

class _Config:
  ffmpeg_name_or_path: _Path = 'ffmpeg'
  show_save_dir: _Path | None = None

_config = _Config()

def _search_for_ffmpeg_path() -> str | None:
  """Returns a path to the ffmpeg program, or None if not found."""
  if filename := shutil.which(_config.ffmpeg_name_or_path):
    return str(filename)
  return None 

然后我导航到我所有安装的库所在的文件夹,发现opt/anaconda3/envs/myenv/lib/python3.10/site-packages文件夹包含所有其他库包含的所有内容.因此,它显然存在于那里.然而,当我运行上面的代码时,我得到的返回值是‘None’.我显然遗漏了一些明显的东西,但我似乎找不到它.

以下是提示该问题的代码,以供参考:

tippe_top = """
<mujoco model="tippe top">
  <option integrator="RK4"/>

  <asset>
    <texture name="grid" type="2d" builtin="checker" rgb1=".1 .2 .3"
     rgb2=".2 .3 .4" width="300" height="300"/>
    <material name="grid" texture="grid" texrepeat="8 8" reflectance=".2"/>
  </asset>

  <worldbody>
    <geom size=".2 .2 .01" type="plane" material="grid"/>
    <light pos="0 0 .6"/>
    <camera name="closeup" pos="0 -.1 .07" xyaxes="1 0 0 0 1 2"/>
    <body name="top" pos="0 0 .02">
      <freejoint/>
      <geom name="ball" type="sphere" size=".02" />
      <geom name="stem" type="cylinder" pos="0 0 .02" size="0.004 .008"/>
      <geom name="ballast" type="box" size=".023 .023 0.005"  pos="0 0 -.015"
       contype="0" conaffinity="0" group="3"/>
    </body>
  </worldbody>

  <keyframe>
    <key name="spinning" qpos="0 0 0.02 1 0 0 0" qvel="0 0 0 0 1 200" />
  </keyframe>
</mujoco>
"""
model = mujoco.MjModel.from_xml_string(tippe_top)
renderer = mujoco.Renderer(model)
data = mujoco.MjData(model)

duration = 7    # (seconds)
framerate = 60  # (Hz)

# Simulate and display video.
frames = []
mujoco.mj_resetDataKeyframe(model, data, 0)  # Reset the state to keyframe 0
while data.time < duration:
  mujoco.mj_step(model, data)
  if len(frames) < data.time * framerate:
    renderer.update_scene(data, "closeup")
    pixels = renderer.render()
    frames.append(pixels)

media.show_video(frames, fps=framerate)

后跟产生的错误消息:

{
    "name": "RuntimeError",
    "message": "Program 'ffmpeg' is not found; perhaps install ffmpeg using 'apt install ffmpeg'.",
    "stack": "---------------------------------------------------------------------------
RuntimeError                              Traceback (most recent call last)
Cell In[4], line 14
     11     pixels = renderer.render()
     12     frames.append(pixels)
---> 14 media.show_video(frames, fps=framerate)

File ~/opt/anaconda3/envs/Exjobb/lib/python3.10/site-packages/mediapy/__init__.py:1858, in show_video(images, title, **kwargs)
   1835 def show_video(
   1836     images: Iterable[_NDArray], *, title: str | None = None, **kwargs: Any
   1837 ) -> str | None:
   1838   \"\"\"Displays a video in the IPython notebook and optionally saves it to a file.
   1839 
   1840   See `show_videos`.
   (...)
   1856     html string if `return_html` is `True`.
   1857   \"\"\"
-> 1858   return show_videos([images], [title], **kwargs)

File ~/opt/anaconda3/envs/Exjobb/lib/python3.10/site-packages/mediapy/__init__.py:1940, in show_videos(videos, titles, width, height, downsample, columns, fps, bps, qp, codec, ylabel, html_class, return_html, **kwargs)
   1938   video = [resize_image(image, (h, w)) for image in video]
   1939   first_image = video[0]
-> 1940 data = compress_video(
   1941     video, metadata=metadata, fps=fps, bps=bps, qp=qp, codec=codec
   1942 )
   1943 if title is not None and _config.show_save_dir:
   1944   suffix = _filename_suffix_from_codec(codec)

File ~/opt/anaconda3/envs/Exjobb/lib/python3.10/site-packages/mediapy/__init__.py:1777, in compress_video(images, codec, **kwargs)
   1775 with tempfile.TemporaryDirectory() as directory_name:
   1776   tmp_path = pathlib.Path(directory_name) / f'file{suffix}'
-> 1777   write_video(tmp_path, images, codec=codec, **kwargs)
   1778   return tmp_path.read_bytes()

File ~/opt/anaconda3/envs/Exjobb/lib/python3.10/site-packages/mediapy/__init__.py:1747, in write_video(path, images, **kwargs)
   1745   dtype = np.dtype(np.uint16)
   1746 kwargs = {'metadata': getattr(images, 'metadata', None), **kwargs}
-> 1747 with VideoWriter(path, shape=shape, dtype=dtype, **kwargs) as writer:
   1748   for image in images:
   1749     writer.add_image(image)

File ~/opt/anaconda3/envs/Exjobb/lib/python3.10/site-packages/mediapy/__init__.py:1567, in VideoWriter.__enter__(self)
   1566 def __enter__(self) -> 'VideoWriter':
-> 1567   ffmpeg_path = _get_ffmpeg_path()
   1568   input_pix_fmt = self._get_pix_fmt(self.dtype, self.input_format)
   1569   try:

File ~/opt/anaconda3/envs/Exjobb/lib/python3.10/site-packages/mediapy/__init__.py:1167, in _get_ffmpeg_path()
   1165 path = _search_for_ffmpeg_path()
   1166 if not path:
-> 1167   raise RuntimeError(
   1168       f\"Program '{_config.ffmpeg_name_or_path}' is not found;\"
   1169       \" perhaps install ffmpeg using 'apt install ffmpeg'.\"
   1170   )
   1171 return path

RuntimeError: Program 'ffmpeg' is not found; perhaps install ffmpeg using 'apt install ffmpeg'."
}

任何帮助都是我们非常感激的.

我已经try 更改"shutil.which"命令正在搜索的文件的名称.我试着重新安装库,并try 不同的库(似乎有两个'ffmpeg-python',版本0.2和ffmpeg(在我的目录中显示为'imageio_ffmpeg')版本0.4.9(但在pip网站上显示为1.4)).

推荐答案

moviepy需要ffmpeg command-line tool,而不是ffmpeg-pythonimageio_ffmpeg的Python库,所以查看site-packages是没有用的.

shutil.which()也不查找库,它查找命令,所以更改其中的内容也不会对您有任何好处.

您可以通过在命令行中键入ffmpeg来确定是否安装了ffmpeg.

如果您有Homebrew,则可以使用以下命令安装该工具

brew install ffmpeg

或者通过ffmpeg.org.

Python相关问答推荐

如何在BeautifulSoup中链接Find()方法并处理无?

try 与gemini-pro进行多轮聊天时出错

我从带有langchain的mongoDB中的vector serch获得一个空数组

对某些列的总数进行民意调查,但不单独列出每列

'discord.ext. commanders.cog没有属性监听器'

通过Selenium从页面获取所有H2元素

如果值不存在,列表理解返回列表

如何列举Pandigital Prime Set

在Python中管理打开对话框

Python虚拟环境的轻量级使用

如何在Python中获取`Genericums`超级类型?

让函数调用方程

如何在Python中使用另一个数据框更改列值(列表)

Flask Jinja2如果语句总是计算为false&

如果有2个或3个,则从pandas列中删除空格

按条件添加小计列

Python日志(log)库如何有效地获取lineno和funcName?

Pandas数据框上的滚动平均值,其中平均值的中心基于另一数据框的时间

#将多条一维曲线计算成其二维数组(图像)表示

使用元组扩展字典的产品挑战