
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (34)
-
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)
Sur d’autres sites (7761)
-
Java merge ? mix ? 2 audio files(mp3) parallely and download it
11 février 2024, par JoonSeo Yangis there any way to mix 2 audio files parallely and let user download it ?


I was trying it by ffmpeg


String audioInputPath1 = "sample_audio1.wav";
String audioInputPath2 = "sample_audio2.wav";
String outputFilePath1 = "filePath";
FFmpeg ffmpeg = new FFmpeg("C:\\filePath\\ffmpeg-master-latest-win64-gpl\\ffmpeg-master-latest-win64-gpl\\bin\\ffmpeg.exe");
FFmpegExecutor executor = new FFmpegExecutor(ffmpeg);
FFprobe ffprobe = new FFprobe("C:\\filePath\\ffmpeg-master-latest-win64-gpl\\ffmpeg-master-latest-win64-gpl\\bin\\ffprobe.exe");

FFmpegProbeResult probeResult = ffprobe.probe(audioInputPath1);
FFmpegProbeResult probeResult2 = ffprobe.probe(audioInputPath2);

FFmpegBuilder builder = new FFmpegBuilder()
.overrideOutputFiles(true)
.setInput(audioInputPath2)
.addInput(audioInputPath1)
.addOutput(outputFilePath2)
.setFormat("wav")
.setAudioCodec("libmp3lame")
.setAudioBitRate(256000)
.done();

executor.createJob(builder).run();



after i run this code, i get proper .wav file at my outputfilepath, but what i get is just same copy of sample_audio2.wav. no concat, or merged with sample_audio1.wav can i get any help on this problem ??


-
Fix flickering when replacing the upload template with the download template.
15 décembre 2011, par Sebastian Tschanm index.html m jquery.fileupload-ui.js m package.json Fix flickering when replacing the upload template with the download template.
-
How can I download the libsvt_hevc library on ffmpeg on a Mac ?
16 janvier 2023, par Tarnim NosI need to perform Scalable Video Encoding on a video using ffmpeg. In order to do so, I need to have the libsvt_hevc library. So any idea how add this library to Ffmpeg on a Mac ?


I tried downloading the library but none of the links available online are suitable for Mac.