
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (34)
-
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 (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (4365)
-
ffmpeg stream file to crtmp - How to change the resolution ?
29 novembre 2014, par MartinI’m using ffmpeg - streaming local file to crtmpserver (or other server) :
ffmpeg.exe -re -i file.avi -vcodec libx264 -preset veryfast -acodec aac -strict experimental -f flv rtmp://256.257.0.0:1935/flvplayback/live
How to change the resolution ? File has a resolution
1920x1080
, but I want to send only640x360
.-s 640x360
does not work. -
Quick way to extract extract frames in low resolution
29 mars 2013, par LescottI have a video (640x320) which I need to decode in frame array (
BufferedImage
's in 100x100 size).I can solve this problem with IMediaReader and MediaListenerAdapter by the following slow way.
// create reader and add listener
reader = ToolFactory.makeReader("video.mp4");
reader.setBufferedImageTypeToGenerate(BufferedImage.TYPE_3BYTE_BGR);
reader.addListener(new ImageSnapListener());
//change scale of pictures in onVideoPicture
public void onVideoPicture(IVideoPictureEvent event) {
...check the stream number...
results.add(event.getImage().getScaledInstance(100, 100, Image.SCALE_SMOOTH));
}But this way is really slow. Even without images scaling it works 30 seconds on 54 MB file, whereas
ffmpeg
can extract 100x100 frames in 8 seconds.ffmpeg -vf select='eq(pic_type\,I)' -i video.mp4 -s 100x100 /tmp/frames/%0d.bmp
So, is there any faster way to make Xuggler extract frames in low resolution ?
-
Revision 86140 : Résolution du second problème : on déplace tous les styles qui concernent ...
17 novembre 2014, par rastapopoulos@… — LogRésolution du second problème : on déplace tous les styles qui concernent le fullscreen dans la feuille commune. Cette fonctionnalité marche donc tout aussi bien dans le site public. Au passage on renforce certains styles, notamment l’onglet avec l’icône fullscreen, pour qu’il soit toujours à la bonne taille (en pixel toujours), et avec l’icône (car ça virait en FOCUS avec Tinytypo… hum hum).