
Recherche avancée
Autres articles (81)
-
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 -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (11381)
-
Access webcam of sleeping Mac in ssh with FFmpeg
10 juillet 2021, par user3783569I am able from my Macbook to ssh my remote Macmini which is ON (logged in and not sleeping) and use my webcam with a command like
ffmpeg -f avfoundation -framerate 30 -i "0:0" out.avi
however, when the remote Macmini is logged out (or/and sleeping) ffmpeg gives me an error that it cannot use the webcamFailed to create AV capture input device: Cannot use PC-LM1E
. Any workaround ? I want to check on my pets while out of my house and would like to keep the Macmini at sleep.

Thanks I advance.


-
How to render VAAPI surface with ffmpeg using OpenGl
27 mai 2019, par HellBloodHello programmer friends,
My project is to use the VAAPI hardware acceleration linked with FFmpeg. I managed to decode with VAAPI however I would like to be able to display the video coming out of VAAPI decoding using OpenGL to render. Are there functions that allow this ? I know that for that you have to play with VAAPI’s surface "VASurfaceID" but I do not see how ...
Thank you in advance :) -
executing cd command and ffmpeg in java
27 août 2013, par Chris JHow to run cd command(In linux Ubuntu) and ffmpeg on the changed directory. The following jsp program not working for me.
String cmd = "cd "+getServletContext().getRealPath("/")+"Files/videos/";
out.println(cmd);
ProcessBuilder pb = new ProcessBuilder(
"/bin/sh", "-c",
cmd + "&& ffmpeg -i nature.MP4");
Process p = pb.start();
BufferedReader in = new BufferedReader(
new InputStreamReader(p.getInputStream()) );
String line;
out.println("Meta-data...");
while ((line = in.readLine()) != null) {
out.println(line);
}
in.close();Thanks in advance...