
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (35)
-
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site -
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 (...) -
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 (6948)
-
avutil/log : fix detecting console mode on Win32
29 janvier 2020, par Marton Balint -
avutil/log : add support for multibyte console log for win32
29 janvier 2020, par Marton Balint -
ffmpeg is always giving me No such File TEST8.mp4 but file is there and this command is getting executed directy in console
13 juin 2013, par finch986ffmpeg is always giving me No such File TEST8.mp4 but file is there and this command is getting executed directy in console
ffmpeg is always giving me No such File TEST8.mp4 but file is there and this command is getting executed directy in consoleString exe = "chmod 777 /data/data/com.demo.videocomparedemo/ffmpeg"/*+" -i TEST8.mp4 -acodec copy -vf \"transpose=1\" TEST8-1.mp4"*/;
Process process = runtime.exec(exe,null,null);
process.waitFor();
process.destroy();
String src="/mnt/sdcard/Swingpro/TEST8.mp4";
String exe1 = "chmod 777 "+src/*+" -i TEST8.mp4 -acodec copy -vf \"transpose=1\" TEST8-1.mp4"*/;
Process process1 = runtime.exec(exe1,null,null);
process1.waitFor();
process1.destroy();
File file = new File("/mnt/sdcard/Swingpro", "TEST9.mp4");
boolean retVal = false;
if(file.exists()){
if(file.isDirectory()){
retVal = file.delete();
}
}
file.createNewFile();
String src1="/mnt/sdcard/Swingpro/TEST9.mp4";
String exe2 = "chmod 777 "+src1;
Process process2 = runtime.exec(exe2,null,null);
process2.waitFor();
process2.destroy();
File dir = new File("/mnt/sdcard/SwingPro");
List<string> args = new ArrayList<string>();
args.add ("/data/data/com.demo.videocomparedemo/ffmpeg"); // command name
args.add ("-i "+src); // optional args added as separate list items
args.add("-acodec copy ");
args.add("-vf \"transpose=1\" "+src1);
ProcessBuilder pb = new ProcessBuilder (args);
Process p = pb.start();
p.waitFor();
</string></string>