
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 (70)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (10586)
-
how to Add mp3 file in to video file using ffmpeg
20 mai 2020, par Rahane Akoliyai want to Add mp3 file in to video file using ffmpeg,i refer many link but not find answer.anyone can help me ?



final String[] command= ("-i "+ Constant.getTempVideo(VideoEditorActivity.this, false) +" -i " +Constant.Song_Path+ " -c copy -map 0:0 -map 0:1 -map 1:0 -shortest " + videoOutputPath).split(" ");




i try this command but give error.


-
How to convert a video to mask with ffmpeg ?
8 avril 2019, par Zedd WI want to synthesize videos with a pre-designed template.
template structure
- background video : background
- mask video : mask
- foreground video : foreground
- content video : content
The final result is similar to the video below
result : This video is synthesized by me using moviepy(a Python module for video editing). But it takes too long to be used in production.
So, I need to overlay these videos into a single video.
Current problems
- How to convert a video to mask by ffmpeg ?
- How to synthesize these videos to a single video by ffmpeg ?
-
video compression error in android
27 avril 2017, par Arpan SharmaI am using ffmpeg for video compression in android.I an following this link
But i always get exit code 1.I am trying to get video from VIDEO CAPTURE intent inside a fragment.
This is my codefinal Clip clip_in = new Clip(videoPath);
File fileTmp = activity.getCacheDir();
File fileAppRoot = new File(activity.getApplicationInfo().dataDir);
final Clip clip_out = new Clip(videoPath);
//put flags in clip
clip_out.videoFps = "30";
clip_out.width = 480;
clip_out.height = 320;
clip_out.videoCodec = "libx264";
clip_out.audioCodec = "copy";
try {
FfmpegController fc = new FfmpegController(getContext(), fileTmp);
fc.processVideo(clip_in, clip_out, false, new ShellUtils.ShellCallback() {
@Override
public void shellOut(String shellLine) {
System.out.println("MIX> " + shellLine);
}
@Override
public void processComplete(int exitValue) {
if (exitValue != 0) {
// System.err.println("concat non-zero exit: " + exitValue);
Log.d("ffmpeg", "Compilation error. FFmpeg failed");
Toast.makeText(activity, "result: ffmpeg failed", Toast.LENGTH_LONG).show();
} else {
if (new File("/storage/emulated/0/Developer/result2.mp4").exists()) {
Log.d("ffmpeg", "Success file:" + "/storage/emulated/0/Developer/result2.mp4");
}
}
}
});
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}Any help will be appreciated.