
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (91)
-
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...) -
Configuration spécifique pour PHP5
4 février 2011, parPHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
Modules spécifiques
Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang 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.
Sur d’autres sites (7018)
-
How to execute a ffmpeg code on a GPU without using the command line ?
24 octobre 2018, par Gilberto UgoliniWe have written a short code in C code to read a video file, using common libraries as
libavcodec
,libavformat
, etc.The code is running smoothly but only using the CPU resources. We’d need to run the code on the GPU (Nvidia GeForce 940MX and 1080Ti). Is there a way to force the code to be run on the GPU ?
While using the command line (e.g.,
ffmpeg -hwaccel cuvid -i vid.mp4 out.avi
) things are fine, we are not able to have it working on the GPU from the source code.We are working with Ubuntu 18.04, and ffmpeg correctly compiled with CUDA 9.2
-
Python code to concat videos and images using ffmpeg
9 décembre 2019, par srt243I have a folder with multiple
mxf
files in it and I want to join the files by inserting an image forn
number of duration between videos. Below is the list with the duration for which an image needs to be inserted for.['00:00:06:17', '00:00:00:16', '00:00:01:05', '00:00:00:31', '00:00:01:01']
For example, if the folder has 5
mxf
files then,video1 + image for 00:00:06:17 + video2 + image for 00:00:00:16 + video 3, etc...
Any pointers will be much appreciated.
-
libav avformat_open_input error code -1094995529
17 juin 2015, par mohamedI am using libav to decode njpeg stream, I read each frame as a byte array.
usingAVIOContext
to read the array and make anAVFormatContext
I got 2 frames decoded, the third one, the function
avformat_open_input
returns-1094995529
What is that error code, so I can find out the problem ?