
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (89)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (11796)
-
SWF to PNG.. but merge all pngs inside into 1
14 novembre 2014, par JaydenThe title says it all,
I’ve tried swftools and ffmepg but I don’t ’think’ they achieve what I need to do.
Basically there is a SWF file that is made up of up to 60 images, them 60 images inside the SWF all are parts of an image that make up 1 final image or animation on an online game.
I need to be able to download the swf as a png image with the same output it will look like on the virtual game - so not 60 images if seperate graphics, just one image with them all (merged ?) together.
I am not even sure if this is possible to do in the commandline so if you understand any of this, please point me in the right direction.
I am using Ubuntu 14.04
-
this code is transcode video file using ffmpeg convter. how to i handle if video transcoding is fail and get information of failure reason.
15 octobre 2016, par YuviString command ="ffmpeg command for transcode video" ;
//System.out.println("command-->"+command);
Process proc = Runtime.getRuntime().exec(command);
System.out.println("process-->"+proc);
BufferedReader reader = new BufferedReader(new InputStreamReader(proc.getErrorStream()));
System.out.println("reader-->"+reader);
String line = "";
while((line = reader.readLine()) != null) {
System.out.print(line + "\n");
}
System.out.println("out stream :: "+proc.getOutputStream()); -
This code is transcode video file using ffmpeg convter. How to handle if video transcoding is fail and get information of failure reason [on hold]
16 octobre 2016, par YuviString command ="ffmpeg command for transcode video";
//System.out.println("command-->"+command);
Process proc = Runtime.getRuntime().exec(command);
System.out.println("process-->"+proc);
BufferedReader reader = new BufferedReader(new InputStreamReader(proc.getErrorStream()));
System.out.println("reader-->"+reader);
String line = "";
while((line = reader.readLine()) != null) {
System.out.print(line + "\n");
}
System.out.println("out stream :: "+proc.getOutputStream());