
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (112)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (10521)
-
bethsoftvid : pass palette in side data instead of in a separate packet.
18 janvier 2012, par Justin Rugglesbethsoftvid : pass palette in side data instead of in a separate packet.
-
x86inc : add TAIL_CALL macro to abstract a common asm idiom
3 février 2012, par Loren Merrittx86inc : add TAIL_CALL macro to abstract a common asm idiom
-
ffmpeg failed - 455 Method Not Valid in This State
3 juin, par paty.r15I 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.


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




method SETUP failed : 455 Method Not Valid in This State




This is how I am installing FFmpeg in the image :


# ---------------------- OpenCV ffmpeg ---------------------------#
RUN mkdir -p /opt/src \
 && curl -Lo /opt/src/ffmpeg-${FFMPEG_VERSION}.tar.gz \
 http://ffmpeg.org/releases/ffmpeg-${FFMPEG_VERSION}.tar.bz2 \
 && tar -xvf /opt/src/ffmpeg-${FFMPEG_VERSION}.tar.gz -C /opt/src \
 && cd /opt/src/ffmpeg-${FFMPEG_VERSION} \
 && ./configure --enable-gpl --enable-avresample --enable-libopencore-amrnb \
 --enable-libx264 --enable-libxvid --enable-postproc --enable-version3 \
 --enable-shared --enable-pic --extra-ldexeflags=-pie \
 && make -j $(nproc) \
 && make install \
 && ldconfig -v \
 && rm -rf /opt/src

# ---------------------- OpenCV stuff ---------------------------#
RUN mkdir -p /opt/src/opencv-${OPENCV_VERSION}/build \
 && curl -sLo /opt/src/opencv3.tar.gz \
 https://github.com/Itseez/opencv/archive/${OPENCV_VERSION}.tar.gz \
 && tar -xzvf /opt/src/opencv3.tar.gz -C /opt/src \
 && cd /opt/src/opencv-${OPENCV_VERSION}/build \
 && cmake -D CMAKE_BUILD_TYPE=RELEASE \
 -D CMAKE_INSTALL_PREFIX=/usr/local \
 -D WITH_TBB=ON \
 -D WITH_OPENMP=ON \
 -D WITH_FFMPEG=ON .. \
 && make -j "$(nproc)" \
 && make install \
 && ldconfig -v \
 && rm -rf /opt/src



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).