Recherche avancée

Médias (91)

Autres articles (99)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 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, par

    Multilang 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, par

    Cette 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 Finegan

    Changed 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 Tharaka

    I 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 jc

    Dears :

    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