
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (68)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
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 (11110)
-
avformat/hlsenc : donnot show duplicate segment warning at byterange mode
19 juin 2017, par Steven Liuavformat/hlsenc : donnot show duplicate segment warning at byterange mode
When the hlsenc at BYTERANGE mode, it should not show the warning message :
"Duplicated segment filename detected :"Reported-by : Marco <marco@worldcast.com>
Signed-off-by : Steven Liu <lq@chinaffmpeg.org> -
when i use FFmpeg libary to compress video,ide show this error
29 mai 2017, par leslieE/FFmpeg: Exception while trying to run: /data/user/0/com.example/files/ffmpeg -y -i /storage/emulated/0/DCIM/Camera/VID_20170517_112234.mp4 -vf scale=500:-1 qscale:v 8 -acodec copy -vcodec mpeg4/storage/emulated/0/wobingwoyi/1496060268815.mp4
java.io.IOException: Error running exec(). Command: [/data/user/0/com.wobingwoyi/files/ffmpeg, -y, -i, /storage/emulated/0/DCIM/Camera/VID_20170517_112234.mp4, -vf, scale=500:-1, -qscale:v, 8, -acodec, copy, -vcodec, mpeg4, /storage/emulated/0/wobingwoyi/1496060268815.mp4] Working Directory: null Environment: null -
javafx show FFmpegFrameGrabber javacv
26 mai 2017, par Anastasia SisordiaI use org.bytedeco.javacv. Created
FFmpegFrameGrabber streamGrabber = new FFmpegFrameGrabber(filename);
When I use
CanvasFrame
i justgrab
thestreamGrabber
and convert thisframe
toBufferedImage
and show this imagecanvas.showImage(bi);
And this works perfect.
But if I want to show this image inside the
GridPane
, I convertBufferedImage
tojavafx.scene.image.Image
:Image image= SwingFXUtils.toFXImage(bi, null);
And my programm catch OutOfMemoryError .
May I add
Frame (org.bytedeco.javacv.Frame)
orBufferedImage
to myGridPane
without conver to image ? What need to do ?