Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (100)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (8329)

  • avcodec/amfenc : add support for QueryOutput wait

    11 octobre 2024, par Cameron Gutman
    avcodec/amfenc : add support for QueryOutput wait
    

    Enable waiting in QueryOutput() based on driver support to reduce
    unnecessary delays.

    Fix for issue #10622

    Co-authored-by : Araz Iusubov <Primeadvice@gmail.com>

    • [DH] libavcodec/amfenc.c
    • [DH] libavcodec/amfenc.h
    • [DH] libavcodec/amfenc_av1.c
    • [DH] libavcodec/amfenc_h264.c
    • [DH] libavcodec/amfenc_hevc.c
  • ffmpeg failed - 455 Method Not Valid in This State

    3 juin, par paty.r15

    I created a Node.js app that gets an RTSP stream with FFmpeg to analyse it with OpenCV 3. It is working if I install FFmpeg and OpenCV in my local.

    &#xA;

    But now I created a Docker image that contains the installation of those libraries and I'm using it as a base to create another image & container where I'm trying to run my app. When I run it inside that container I get this error over and over again when trying to get the RTSP stream with an FFmpeg instruction for

    &#xA;

    &#xA;

    method SETUP failed : 455 Method Not Valid in This State

    &#xA;

    &#xA;

    This is how I am installing FFmpeg in the image :

    &#xA;

    # ---------------------- OpenCV ffmpeg ---------------------------#&#xA;RUN mkdir -p /opt/src \&#xA; &amp;&amp; curl -Lo /opt/src/ffmpeg-${FFMPEG_VERSION}.tar.gz \&#xA;    http://ffmpeg.org/releases/ffmpeg-${FFMPEG_VERSION}.tar.bz2 \&#xA;  &amp;&amp; tar -xvf /opt/src/ffmpeg-${FFMPEG_VERSION}.tar.gz -C /opt/src \&#xA;  &amp;&amp; cd /opt/src/ffmpeg-${FFMPEG_VERSION} \&#xA;  &amp;&amp; ./configure --enable-gpl --enable-avresample --enable-libopencore-amrnb \&#xA;  --enable-libx264 --enable-libxvid --enable-postproc --enable-version3 \&#xA;  --enable-shared --enable-pic --extra-ldexeflags=-pie \&#xA;  &amp;&amp; make -j $(nproc) \&#xA;  &amp;&amp; make install \&#xA;  &amp;&amp; ldconfig -v \&#xA;  &amp;&amp; rm -rf /opt/src&#xA;&#xA;# ---------------------- OpenCV stuff ---------------------------#&#xA;RUN mkdir -p /opt/src/opencv-${OPENCV_VERSION}/build \&#xA;  &amp;&amp; curl -sLo /opt/src/opencv3.tar.gz \&#xA;     https://github.com/Itseez/opencv/archive/${OPENCV_VERSION}.tar.gz \&#xA;  &amp;&amp; tar -xzvf /opt/src/opencv3.tar.gz -C /opt/src \&#xA;  &amp;&amp; cd /opt/src/opencv-${OPENCV_VERSION}/build \&#xA;  &amp;&amp; cmake -D CMAKE_BUILD_TYPE=RELEASE \&#xA;    -D CMAKE_INSTALL_PREFIX=/usr/local \&#xA;    -D WITH_TBB=ON \&#xA;    -D WITH_OPENMP=ON \&#xA;    -D WITH_FFMPEG=ON .. \&#xA;  &amp;&amp; make -j "$(nproc)" \&#xA;  &amp;&amp; make install \&#xA;  &amp;&amp; ldconfig -v \&#xA;  &amp;&amp; rm -rf /opt/src&#xA;

    &#xA;

    Do you have any idea what this error is and how to fix it ? I think it might have to do with the initial configuration on the installation of either of them (FFmpeg or OpenCV).

    &#xA;

  • avcodec/ffv1 : Clear state on alloc

    6 août, par Michael Niedermayer
    avcodec/ffv1 : Clear state on alloc
    

    Fixes : use of uninitialized memory
    Fixes : 428969823/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FFV1_DEC_fuzzer-5909681623334912

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/ffv1.c