
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (52)
-
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" (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (5286)
-
Android ffmpeg usage - I want reduce the output apk file size - Iam Using only for image to webp conversion
3 juin 2022, par Fazl FaisalFFMPEG - Android Only using for jpg to webp conversion. But the apk file size is very big.
I want know where rules want to change for reducing the APK file size. Please Help


List<string> commandList = new LinkedList<>();
 commandList.add("-i");
 commandList.add(imageFilePath);
 commandList.add("-vcodec");
 commandList.add("webp");
 commandList.add("-loop");
 commandList.add("0");
 commandList.add("-pix_fmt");
 commandList.add("yuv420p");
 commandList.add(outputPath);

 String[] cropCommand = commandList.toArray(new String[commandList.size()]);

 FFmpegSession session = FFmpegKit.execute(cropCommand);

 if (ReturnCode.isSuccess(session.getReturnCode())) {

 fp.ToastDebug("Success");

 } else if (ReturnCode.isCancel(session.getReturnCode())) {

 fp.ToastDebug("CANCEL");

 } else {

 fp.AlertDebug("ffmpeg: "+ String.format("Command failed with state %s and rc %s.%s", session.getState(), session.getReturnCode(), session.getFailStackTrace()));
 fp.Log("ffmpeg: "+ String.format("Command failed with state %s and rc %s.%s", session.getState(), session.getReturnCode(), session.getFailStackTrace()));

 }
</string>


-
lavc/mpegvideo_parser : improve exporting field-coding information
30 septembre 2023, par Anton Khirnovlavc/mpegvideo_parser : improve exporting field-coding information
* export AVCodecParserContext.picture_structure.
* when there are two field pictures in the packet, set
the interlacing parameters accordingly :
* repeat_pict=1 and picture_structure=FRAME to indicate 2 fields
* field_order to indicate the first field of the two -
Mix audio input with video to specific location with FFmpeg
26 septembre 2016, par user2364292I created small video editing tool with which you can put some overlay images to the video and show them at specific locations and durations (filter : overlay=enabled(from, to...), etc.).
Now I also want to add some short audio sounds on the same way like pictures -> adding them to a specific time in the video. That means that overlays and audio sounds should be in one command if possible. I am using amix to merge all sound channels (video.mp4 and sound.mp3) but the thing is that they both start at the beginning. I tried with adelay=1500 but then I actually delay one channel that means I hear duplicate sounds with 1.5 sec delay. So I would like to delay only sound.mp3 input. Am I doing something wrong ?My try was that :
-i video.mp4 -i sound.mp3 -filter_complex amix -preset ultrafast -vcodec libx264 -r 24 -profile:v baseline -threads 14 video_output.mp4
Thank you very much !