
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (86)
-
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 ;
-
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 -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (15293)
-
fate : Use the correct, local path to samples for opus reference files
12 juillet 2014, par Martin Storsjö -
VTK Requested modules not available vtkIOFFMPEG
15 juillet 2019, par Anees Hikmat Abu HmiadIm try to execute this example from VTK, and to do that I most install ffmpeg from this url and all is good, but when I try to build project I get this error :
/Downloads/VTK-8.2.0/CMake/vtkModuleAPI.cmake:140 (message) :
Requested modules not available :vtkIOFFMPEG
I do all step in ffmpeg zipped file which I installed it from VTK download url, and if press ccmake on VTK-build directory I can see these option is enabled
VTK_FFMPEG_INCLUDE_DIR /tmp/ffmpeg_inst/include
VTK_FFMPEG_avcodec_LIBRARY /tmp/ffmpeg_inst/lib/libavcodec.so
VTK_FFMPEG_avformat_LIBRARY /tmp/ffmpeg_inst/lib/libavformat.so
VTK_FFMPEG_avutil_LIBRARY /tmp/ffmpeg_inst/lib/libavutil.so
VTK_USE_FFMPEG_ENCODER ONand all files/directory is found and located under /tmp/ffmpeg_inst,
Also I run make -j4 after VTK_USE_FFMPEG_ENCODER is set on.Why vtkIOFFMPEG module not found now ? is there any mistake in configuration or is there any specific configuration for FFMPEG example before build ? thanks.
Additional Note :
- VTK version : 8.2.0
- cmake version 3.13.2
-
Running xdotool movewindow from a python script
19 août 2014, par mr mojo risinI am writing a python script to run a movie using ffplay, and then move the ffplay window to a specific location on the screen.
The script I am basing this one is located here - http://code.activestate.com/recipes/577376-simple-way-to-execute-multiple-process-in-parallel/
The only difference is I am changing the commands array at the bottom to
commands = [
['xdotool', 'search', '--name', 'Goodfellas', 'windowmove', '480', '200'],
['ffplay', '-x', '320', '-y', '180', '-autoexit', '/data/media/Vidoes/Movies/Goodfellas.mp4']
]The video plays fine, but the window will not move position
To test if the script is actually cycling through all the commands I added the command
['xdotool', 'mousemove', '180', '180'],
And the mouse will indeed move to location 180, 180 on my screen
Perhaps maybe ffplay takes a split second to load and there is still no screen called Goodfellas when the movewindow command is executed