
Recherche avancée
Médias (2)
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
Autres articles (49)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (6687)
-
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.