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)

  • Added XDomainRequest Transport plugin for cross-domain AJAX support in MSIE >= 8.

    18 novembre 2011, par Sebastian Tschan

    m application.js m gae/main.py + jquery.xdr-transport.js m php/index.php Added XDomainRequest Transport plugin for cross-domain AJAX support in MSIE >= 8. Treat GET requests with a "_method" parameter of "DELETE" like DELETE requests for the Google App Engine and PHP implementations, as (...)

  • How do I add cross-fade when concatenating video with intermediate files using FFmpeg

    10 juillet 2022, par Sandun Tharaka

    I am working on concatenating each video with FFmpeg intermediate files, and want to add cross-fade when merging each of the videos.

    


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


    


    Here is the function to 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 compiling OpenCV with ffmpeg support for arm target fails

    1er juin 2013, par user2361999

    I am trying to cross compile OpenCV with ffmpeg support for mini2440(arm based). The following are the steps i followed.

    1. Cross compiled ffmpeg 0.5.1 and successfully created the libraries following this guide.(http://luupkceit.blogspot.in/2011/07/motion-webcam-on-mini2440-this-is.html)

      ./configure --prefix=/usr --libdir=/lib --datadir=/usr/share --enable-shared --enable-cross-compile --arch=arm --cc=arm-linux-gcc --host-ldflags="-L/rootfs/lib" --host-cflags="-I/rootfs/usr/include"

      make

      make install DESTDIR=/install/ffmpeg

    2. I downloaded openCV 2.0.0 and ran the the following configure command.

      ./configure --prefix=$TGT_DIR --host=arm-linux CPPFLAGS=-I/install/ffmpeg/usr/include LDFLAGS=-L/install/ffmpeg/lib --with-python=no --with-ffmpeg=yes --without-quicktime --with-imageio=no --with-gtk=no --with-carbon=no --with-unicap=no --with-gthread=no

    My ffmpeg libraries are at /install/ffmpeg/lib and my include files are at /install/ffmpeg/usr/include

    The above configure step finishes running and produces the following log :

    file(http://pastebin.com/nAV0zyPW).
    ffmpeg support does NOT get turned on.

    Please let me know how i can turn on ffmpeg support for OpenCV for arm target.

    Any help is greatly appreciated.

    Thanks,
    Anvesh