
Recherche avancée
Autres articles (61)
-
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 (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)
Sur d’autres sites (3558)
-
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.


-
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 ?


-
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 ?