
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 (101)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
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 (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (...)
Sur d’autres sites (11251)
-
compiling errors with ffmpeg on linux [closed]
7 mai 2013, par David TreeHi all ,I downloaded the latest ffmpeg source code and successfully installed it on Ubuntu
But I failed to compile a simple demo.
This was created with QtCreator with the .pro file as follows :QT -= gui
TARGET = qt_v4l2
TEMPLATE = app
SOURCES += \
../tutorial01.cLIBS += -L/-lavcodec -lavformat -lswscale -lavutil
Here are the error messages ,just to name a few :
../tutorial01.c:22:16 : error : unknown type name 'AVFrame'
../tutorial01.c:55:5 : error : unknown type name 'uint8_t'
../tutorial01.c:68:50 : error : 'NULL' undeclared (first use in this function)
/tutorial01.c:84:22 : error : request for member 'streams' in something not a structure or union
../tutorial01.c:84:57 : error : 'AVMEDIA_TYPE_VIDEO' undeclared (first use in this function)
../tutorial01.c:122:24 : error : expected expression before ')' token
../tutorial01.c:128:21 : error : 'AVPicture' undeclared (first use in this function)
../tutorial01.c:128:32 : error : expected expression before ')' token.
And this is the ffmpeg installed
ffmpeg version 1.1.git Copyright (c) 2000-2013 the FFmpeg developers
built on May 7 2013 14:10:58 with gcc 4.7 (Ubuntu/Linaro 4.7.2-2ubuntu1)
configuration : —enable-gpl —prefix=/usr —enable-libx264 —enable-pthreadsAnd this is the actuall CODE
https://github.com/phamquy/FFmpeg-tutorial-samples/blob/master/tutorial01.c
-
How to save ffmpeg output.mp4 to file
31 mars 2020, par InterestedbutnotknowingI have a very basic question. I combined an .wav and .mp4 file to output.mp4 using ffmpeg in python :
!ffmpeg -i /content/input.mp4 -i audio.wav -c:v copy -c:a copy output.mp4
Now how do I save the output.mp4 to an .mp4 file on my computer ?
Thank you very much in advance -
Play video in Android using FFMPEG
24 juin 2013, par Jagdeep SinghI had build
FFmpeg
library in Android(NDK) using this. But this example is too basic. It just checks if the video is present or not. What I want to do is just to play the video usingFFMPEG
. Is there any example or any code which can help me on this ?Thanks in advance.