Recherche avancée

Médias (91)

Autres articles (55)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (8383)

  • avformat/hls : Check mime_ok first

    15 mai 2023, par Michael Niedermayer
    avformat/hls : Check mime_ok first
    

    This should be a few nano seconds faster (not measureable)
    But Collectively the whole humankind watching hls will safe a minute

    Found-by : Leo Izen

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/hls.c
  • libx264 codec not enabled in ffmpeg ubuntu 18.04

    18 janvier 2023, par Bendemann

    I have some weird codec installation issues with the following docker image.

    &#xA;

    ARG PYTORCH="1.8.0"&#xA;ARG CUDA="11.1"&#xA;ARG CUDNN="8"&#xA;FROM pytorch/pytorch:${PYTORCH}-cuda${CUDA}-cudnn${CUDNN}-devel&#xA;&#xA;ENV TORCH_CUDA_ARCH_LIST="6.0 6.1 7.0 8.0&#x2B;PTX"&#xA;ENV TORCH_NVCC_FLAGS="-Xfatbin -compress-all"&#xA;ENV CMAKE_PREFIX_PATH="$(dirname $(which conda))/../"&#xA;&#xA;# https://github.com/NVIDIA/nvidia-docker/issues/1632&#xA;RUN apt-key del 7fa2af80&#xA;RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/3bf863cc.pub&#xA;RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu2004/x86_64/7fa2af80.pub&#xA;&#xA;RUN apt-get update &amp;&amp; apt-get install -y \&#xA;        git nano ninja-build p7zip-full imagemagick wget unzip \&#xA;        libglib2.0-0 libsm6 libxrender-dev libxext6 libturbojpeg \&#xA;        libxrender1 libfontconfig1 freeglut3-dev llvm-6.0-tools curl \&#xA;        amqp-tools ffmpeg libx264-dev \&#xA;    &amp;&amp; apt --fix-broken install \&#xA;    &amp;&amp; apt-get clean \&#xA;    &amp;&amp; rm -rf /var/lib/apt/lists/* \&#xA;    # for visualizing&#xA;    &amp;&amp; wget https://github.com/mmatl/travis_debs/raw/master/xenial/mesa_18.3.3-0.deb \&#xA;    &amp;&amp; dpkg -i ./mesa_18.3.3-0.deb || true \&#xA;    &amp;&amp; apt install -f \&#xA;    &amp;&amp; git clone https://github.com/mmatl/pyopengl.git \&#xA;    &amp;&amp; pip install ./pyopengl&#xA;

    &#xA;

    First of all, libx264 is supposed to be installed by a simple apt-get install ffmpeg in ubuntu 18.04.5. Indeed I see that it is being installed in the installation instructions but for some reason, it's not enabled. This is confirmed when running ffmpeg -codecs | grep 264, which doesn't show libx264 (only h264, libopenh264 are there).

    &#xA;

    In addition, I also compiled from source, explicitly enabling libx264 during installation. It didn't make a difference.

    &#xA;

  • libx264 codec not enabled in ffmpeg ubuntu 18.04

    18 janvier 2023, par Bendemann

    I have some weird codec installation issues with the following docker image.

    &#xA;

    ARG PYTORCH="1.8.0"&#xA;ARG CUDA="11.1"&#xA;ARG CUDNN="8"&#xA;FROM pytorch/pytorch:${PYTORCH}-cuda${CUDA}-cudnn${CUDNN}-devel&#xA;&#xA;ENV TORCH_CUDA_ARCH_LIST="6.0 6.1 7.0 8.0&#x2B;PTX"&#xA;ENV TORCH_NVCC_FLAGS="-Xfatbin -compress-all"&#xA;ENV CMAKE_PREFIX_PATH="$(dirname $(which conda))/../"&#xA;&#xA;# https://github.com/NVIDIA/nvidia-docker/issues/1632&#xA;RUN apt-key del 7fa2af80&#xA;RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/3bf863cc.pub&#xA;RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu2004/x86_64/7fa2af80.pub&#xA;&#xA;RUN apt-get update &amp;&amp; apt-get install -y \&#xA;        git nano ninja-build p7zip-full imagemagick wget unzip \&#xA;        libglib2.0-0 libsm6 libxrender-dev libxext6 libturbojpeg \&#xA;        libxrender1 libfontconfig1 freeglut3-dev llvm-6.0-tools curl \&#xA;        amqp-tools ffmpeg libx264-dev \&#xA;    &amp;&amp; apt --fix-broken install \&#xA;    &amp;&amp; apt-get clean \&#xA;    &amp;&amp; rm -rf /var/lib/apt/lists/* \&#xA;    # for visualizing&#xA;    &amp;&amp; wget https://github.com/mmatl/travis_debs/raw/master/xenial/mesa_18.3.3-0.deb \&#xA;    &amp;&amp; dpkg -i ./mesa_18.3.3-0.deb || true \&#xA;    &amp;&amp; apt install -f \&#xA;    &amp;&amp; git clone https://github.com/mmatl/pyopengl.git \&#xA;    &amp;&amp; pip install ./pyopengl&#xA;

    &#xA;

    First of all, libx264 is supposed to be installed by a simple apt-get install ffmpeg in ubuntu 18.04.5. Indeed I see that it is being installed in the installation instructions but for some reason, it's not enabled. This is confirmed when running ffmpeg -codecs | grep 264, which doesn't show libx264 (only h264, libopenh264 are there).

    &#xA;

    In addition, I also compiled from source, explicitly enabling libx264 during installation. It didn't make a difference.

    &#xA;