
Recherche avancée
Médias (3)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (67)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
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 (...)
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (6452)
-
Running ffplay video within a jframe
22 juillet 2013, par Optimus PrimeI wish to play a video in
JFrame
. I am already usingffmpeg
in my project. As I wish to keep the project light, I am not willing to use other frameworks likeJMF
or other. I know that I can play video usingffplay
. But the problem here isffplay
opens the video in new window when I tryffplay output.avi
I wish to put that video within my JFrame, like a player. How can I do this ?
Request :
Please ask for any other clarifications, details, and suggest improvements or comment what you find wrong before downvoting or voting to close the question :). I will change it. I am really new to Java, I tried searching this but could not find any possible solution.What I tried ? I couln't find anything related to this, so I don't have any code. I am familiar to how to create frames, and can use
runtime
to ffplay video. But I got no clue how to put that video within my window :(.All suggestions are welcome if you can suggest me other methods to play the video. But I haven't use any frameworks other than
ffmpeg
. And do not wish to make the application heavier. So it would be more helpful if it can be achieved usingffplay
. -
FFmpeg screen recording in grayscale to reduce file size ?
6 octobre 2016, par wetjoshFirst off, I am unable to capture the screen of my Mac in grayscale. I’ve tried various combinations of
-pix_fmt gray
(for the input, for the output, and for both) but they never turn out grayscale.Secondly, assuming I figure out how to do it, is it actually a viable option for reducing file size ? I was surprised that reducing the frame rate (
-r
) did not affect file size (though-size
did).ffmpeg -f avfoundation -pix_fmt gray -s 1440x900 -i 1 \
-pix_fmt gray -r 30 -preset ultrafast -b:v 5000k -t 5 out.mov -
How can I encode a stream of jpegs into an mp4 stream using ffmpeg ?
13 janvier 2014, par Nicholas SmithI have many jpegs that are being generated on the fly and would like to stream these jpegs via ffmpeg mp4 into an HTML5 video. Currently I'm opening a pipe and using image2pipe to stream the jpegs into ffmpeg which works great in creating a local file, but I want this to be a live stream rather than a video file. Here is what I have :
ffmpeg_pipe = popen("/usr/bin/ffmpeg -y -f image2pipe -r 1 -vcodec mjpeg -i - out.mp4", "w");
Is there any way using FFmpeg to turn this into a live stream via rstp or udp or anything that will stream to HTML5 video.