Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

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 (...)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

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

    Certains 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 ;

Sur d’autres sites (9850)

  • ffmpeg convert a series of images to video - with crossfade or any other transition between every two frames

    29 février 2020, par Narendra Singh

    I am currently able to convert a series of images to video, but I do also need to add transitions / animation in between them.

    String[] ffmpegCommand = {"/data/data/mypackage/app_bin/ffmpeg", "-y",
    "-qscale", "1", "-r", "" + framerate, "-i", "/data/data/mypackage/app_ipImg/image%3d.jpg",
    "-t", "" + (((total_images) * delay_of_each_frame_in_seconds) + 4), //"-s",heightwidth,
    "-vcodec", "libx264", "-s", "640x480",
    Environment.getExternalStorageDirectory() + "/photo_directory/myVideo.mp4"};

    The above command is working for me to create video from image series

    But

    Now, I do want to add fade or other transition / animation to be displayed in final video before each of the frames.

    I googled a lot, but didn’t find any solution to this trouble, yet.

    Please suggest me the way.

    Thanks in advance.

  • ffmpeg convert a series of images to video - with crossfade or any other transition between every two frames

    12 mai 2017, par Mr Narendra

    I am currently able to convert a series of images to video, but I do also need to add transitions / animation in between them.

    String[] ffmpegCommand = {"/data/data/mypackage/app_bin/ffmpeg", "-y",
    "-qscale", "1", "-r", "" + framerate, "-i", "/data/data/mypackage/app_ipImg/image%3d.jpg",
    "-t", "" + (((total_images) * delay_of_each_frame_in_seconds) + 4), //"-s",heightwidth,
    "-vcodec", "libx264", "-s", "640x480",
    Environment.getExternalStorageDirectory() + "/photo_directory/myVideo.mp4"};

    The above command is working for me to create video from image series

    But

    Now, I do want to add fade or other transition / animation to be displayed in final video before each of the frames.

    I googled a lot, but didn’t find any solution to this trouble, yet.

    Please suggest me the way.

    Thanks in advance.

  • Add transparancy while creating GIFimages from PNG series using ffmpeg [on hold]

    4 avril 2018, par arun

    I have created a gif image from a transparent series of PNG.
    The output gif image did not have transparancy.

      ffmpeg "-i" ,new File(Environment.getExternalStorageDirectory() + "/folder/" + "file_%4d.png").getPath(), new File(Environment.getExternalStorageDirectory() +"/out.gif").getPath()

    Any other parameter to add ?