
Recherche avancée
Autres articles (87)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (9815)
-
OpenCV3.1 compilation error 'ffmpeg/avformat.h' file not found
15 décembre 2016, par aquagremlinOn MacOS 10.9.5 Mavericks. I used homebrew to install
Python
,cmake
,ffmpeg
.
Enteringffmpeg
in terminal shows it is installed.
I downloadedOpencv3
andopencv_contrib
Then
cmake
with this :cmake -D CMAKE_BUILD_TYPE=RELEASE \
-D WITH_CUDA=OFF -D CMAKE_INSTALL_PREFIX=/Users/stefan/Downloads/opencv-3.1.0dl/build \
-D PYTHON2_LIBRARIES=/usr/local/Cellar/python/2.7.10/Frameworks/Python.framework/Versions/2.7/bin \
-D PYTHON2_PACKAGES_PATH=~/.virtualenvs/cv/lib/python2.7/site-packages \
-D PYTHON2_NUMPY_INCLUDE_DIRS=~/.virtualenvs/cv/lib/python2.7/site-packages/numpy/core/include \
-D PYTHON2_INCLUDE_DIR=/usr/local/Frameworks/Python.framework/Headers \
-D INSTALL_PYTHON_EXAMPLES=ON -D WITH_TBB=ON -D INSTALL_C_EXAMPLES=ON \
-D FFMPEG_INCLUDE_DIR=/usr/local/Cellar/ffmpeg/3.0.2/include \
-D FFMPEG_LIB_DIR=/usr/local/Cellar/ffmpeg/3.0.2/lib \
-D BUILD_EXAMPLES=ON \
-D OPENCV_EXTRA_MODULES_PATH=~/Downloads/opencv_contrib-3.0.0/modules ..Terminal output included this :
-- Video I/O:
-- DC1394 1.x: NO
-- DC1394 2.x: NO
-- FFMPEG: YES
-- codec: YES (ver 57.24.102)
-- format: YES (ver 57.25.100)
-- util: YES (ver 55.17.103)
-- swscale: YES (ver 4.0.100)
-- resample: YES (ver 3.0.0)
-- gentoo-style: YESBut
CMakeError.log
had this as its only error :ffmpeg/avformat.h file not found
The file does exist at
/usr/local/Cellar/ffmpeg/3.0.2/include/libavformat/avformat.h
I do not understand why I am getting this error if I properly specified the
FFMPEG
include directories in thecmake
command. Also the variablesFMPEG_INCLUDE_DIR
andFFMPEG_LIB_DIR
do not exist in the file,CMakeLists.txt
.
Does that make my use of those variables in the cake command useless ? -
Read a growing MFX file for live streaming sports match file [closed]
12 novembre 2024, par Sumit ChaudharyI'm struggling to read a growing MXF file in real time for a live sports streaming project in python. I can read the video in 5-minute chunks provided by the recording software, for the same match and I’m able to load the full file (around 750GB) once the match is over and file is complete. However, I need to process the file as it’s still growing. Any suggestions on how to approach this ?


-
Import a ffprobe json metadata file into a video file
26 avril 2020, par CMHI've used ffprobe to export the metadata from a video file as a JSON file (metadata.json) and then removed several chapters from the JSON metadata file using jq metadata_clean.json.



I'm now looking for a way to import the JSON metadata file (metadata_clean.json) back into the video file.



I've looked at ffmpeg but it appears to only accept its own standard metadata file format.



Any suggestions appreciated, thanks.