
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 (69)
-
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 (...) -
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
Sur d’autres sites (10470)
-
ffmpeg not capturing frames in windows using java
19 août 2013, par user2320537I have to develop a tool in java that will capture frames from webcam, Now what I have done for that is, I have used Runtime class to run ffmpeg and other commands, when it opens web-cam then after sometime my web-cam hangs and it does not capture frames.
I am using following method for that.
public class FFMPEGClass {
private String ffmpegExeLocation;
private final String FRAME_DIGITS = "010";
public FFMPEGClass(String capturingDName, String outputImagesLocation, int framesPerSecond) {
ffmpegExeLocation = System.getProperty("user.dir") + "\\bin\\";
System.out.println(ffmpegExeLocation);
try {
System.out.println(ffmpegExeLocation + "ffplay -f dshow -video_size 640x480 -i video=\"" + capturingDName + "\"");
Runtime.getRuntime().exec(ffmpegExeLocation + "ffplay -f dshow -video_size 640x480 -i video=\"" + capturingDName + "\"");
System.out.println(ffmpegExeLocation + "ffmpeg -t 100000 "
+ "-f vfwcap -s 640x480 -i 0 -r 1/" + framesPerSecond + " -f image2 " + outputImagesLocation + "\\camera%"+FRAME_DIGITS+"d.jpg");
Runtime.getRuntime().exec(ffmpegExeLocation + "ffmpeg -t 100000 "
+ "-f vfwcap -s 640x480 -i 0 -r 1/" + framesPerSecond + " -f image2 " + outputImagesLocation + "\\camera%"+FRAME_DIGITS+"d.jpg");
} catch (Exception ex) {
ex.printStackTrace();
}
}
}In my case capturingDName is USB2.0 UVC VGA WebCam
outputImagesLocation is d :\frames and
framesPerSecond is 16For a moment if i run these commands in command prompt then also I am unable to capture frames.
I have already checked many answers from google and stackoverflow but these are not working in my case
-
Add watermark text on mkv video using ffmpeg windows version [on hold]
27 mars 2015, par sajjad hosseiniI want to add a watermark text to a mkv video using ffmpeg windows version .
I want the watermark to be like a subtitle that starts on minute 2 and lasts for 30 seconds and says : copyright to mysite.com . I tried mkvmerge to add a subtitle but it can be easily deleted by others , so now i’m relying on ffmpeg to do this for me . Can anyone help me with the process ? I want the watermark to be actually on the video and can’t be deleted using mkvmerge . -
cmdutils : Only do the windows-specific commandline parsing on _WIN32
7 août 2013, par Diogo Francocmdutils : Only do the windows-specific commandline parsing on _WIN32
Fixes commandline parsing on Cygwin (on 64 bit, and on very recent
32 bit), where the configure check does find the CommandLineToArgvW
function (since it exists in the link libraries and in the headers),
but whose GetCommandLineW() only returns the application’s path.
(This is due to a cygwin internal optimization, see
http://cygwin.com/ml/cygwin/2013-07/msg00538.html for details.)
Arguments are only given through main’s argc/argv, and they’re already
UTF-8.Signed-off-by : Martin Storsjö <martin@martin.st>