
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (49)
-
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 -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
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 (9620)
-
Merge pull request #19 from Grandt/3.20
29 décembre 2013, par GrandtMerge pull request #19 from Grandt/3.20
* Fixed : Issue #15, where name space declarations were erroneously stripped off the html tag of added chapters.
* Fixed : An issue, where PNG images exceeding the maximum specified sizes were broken during resizing.
* Fixed : Issue #16, where ePub 3 multimedia needed to be added to the automatic chapter processing.
* Fixed : Potential issue related to Issue #16 with loading large files from external sources, where these might result in memory errors. These will now be loaded into a temp file on the server, before being added to the book.
* Fixed : Issue #17, where a function was called as a global. -
Load bitmap into FFmpegFrameRecorder
15 mai 2014, par DanMhow can I load bitmap into FFmpegFrameRecorder ? My old code loaded it from SD card and now I wish to put id directly. I use javacv.
FFmpegFrameRecorder recorder = new FFmpegFrameRecorder(Environment.getExternalStorageDirectory().getPath()+ "/MyApp/Media/test-ffmep.mp4", w, h);
public void offerEncoder(Bitmap input)
{
recorder.record(opencv_highgui.cvLoadImage(input));
//recorder.record(opencv_highgui.cvLoadImage("/sdcard/MyApp/Media/" + input + ".bmp")); //input was string
} -
Output a Java window as a webcam stream
15 juin 2012, par ZacI would like to write a program perferably in Java that can display animated overlays on a screen.
The screen will then be broadcast streamed over the internet using a separate program called x-split.
A good way to do this would be to create a transparent window in java which will display animated files (with transparancy) and the output of this window (Its display) should ideally appear in the webcam device list so it can be easily picked up by x-split which will allow it to be arranged ontop of the game screen I'm currently broadcasting.
An example program of this type would be one where a webcam image is displayed and "virtual glasses" overlayed over the image of a persons face which could then be transmitted as an output cam.
I have found the java 6u10-translucent-shapes library to create the transparent window but I don't know how to stream it.
I've read a few things to suggest that JMF and FFMpeg might be the way to go, but I'm not sure what to install and how.
Any help or pointers to tutorials would be greatly appreciated.