Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

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

  • Why android ffmpeg takes so long time to resize mp4 video from high resolution ?

    1er septembre 2018, par Kasim Rangwala

    I’m resizing  30 sec long ( 59.98 MB) mp4 video with resolution of 1920 X 1080 to 1280 X 720 using following ffmpeg command in android.

    ["-i", inputVideo!!.path, "-vf", "scale=720:1280", outputVideo.path, "-hide_banner"]

    converted video output is very good ( 6.6MB). but, ffmpeg conversion take so much time. Is there any options available that I can reduce the conversion time ?

    update

    If output format is other than mp4. it is fine but, conversion time must be reduce.

    Thanks.

  • Merging of videos take long time ffmpeg

    23 juillet 2018, par stan wyck

    I am using below command to merge different videos and it takes a long time

    -i video1.mp4 -i video2.3gp -i video3.mp4
    -filter_complex [1:v]scale=1280:720,setsar=1[v1]; [2:v]scale=1280:720,setsar=1[v2];[3:v]scale=1280:720,setsar=1[v3];[v1][1:a][v2][2:a][v3][3:a]concat=n=3:v=1:a=1[outv][outa]
    -map [outv] -map [outa] -c:v libx264 -c:a aac
    -preset ultrafast videoOut.mp4 -hide_banner
  • FFMPEG trim long video, fast and accurate way

    21 juillet 2018, par Islem Boussetta

    I want to trim my a long video using FFMPEG, so I tried :

    ffmpeg -ss 2 -i in.mp4 -t 72 -c copy out.mp4

    So the result was not good. the video freeze in the beginning. So I tried without -c copy to re-encode the video, the result was good but it takes a lot of time especially with a large file.

    ffmpeg -ss 2 -i in.mp4 -t 72 out.mp4

    So what is the fast way to trim a long video correctly and get a good result ?