
Recherche avancée
Médias (91)
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (99)
-
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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (15929)
-
Revision 92f7d79030 : vpxenc.sh : Add basic multithreaded frame parallel encode test. Change-Id : Id526
24 juin 2015, par Tom FineganChanged Paths :
Modify /test/vpxenc.sh
vpxenc.sh : Add basic multithreaded frame parallel encode test.Change-Id : Id526783fa2e3e9bb31229931b6548ac7a9b2b7e6
-
How do I add cross-fade when concatenate video with intermediate files using ffmpeg
3 juillet 2022, par Sandun TharakaI am working on concatenate each video with ffmpeg intermediate files, I want to add cross-fade when merging each of the video.


const ffmpegArgs = [
 "-y",
 "-f",
 "mpegts",
 "-i",
 `concat:${intermediateFiles.join("|")}`,
 "-c",
 "copy",
 "-bsf:a",
 "aac_adtstoasc",
 resultPath,
];



Here is the function for take intermediate files for each video


const ffmpegArgs = [
 "-y",
 "-i",
 file,
 "-c",
 "copy",
 "-bsf:v",
 "h264_mp4toannexb",
 "-shortest",
 "-avoid_negative_ts",
 "make_zero",
 "-fflags",
 "+genpts",
 "-f",
 "mpegts",
 intermediateFilePath,
];

 



-
Cross compile error : ffmpeg to arm with enable omx OpenMAX IL headers not found
27 septembre 2017, par chang jcDears :
as title, when I cross compile ffmpeg for ARM in a Ubuntu machine I have a problem said "ERROR : OpenMAX IL headers not found"
I have no problem to handle it if target machine is Ubuntu since I can resolve it by "apt-get install libomxil-bellagio-dev"
Is there anyone meets this issue before ?
How could I resolve it ?
Thanks