Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (111)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (10715)

  • Change quality of long videos using ffmpeg

    10 avril 2021, par Captain_Zaraki

    I am trying to use .webm video as input and to increase quality i am rescaling the video and also converting it to .mp4

    


    It is working for short videos but when i use it on videos above 20 minutes duration my system is kept crashing. is there any solution of this ?

    


    ffmpeg -i input.mp4 -vf scale=1280:720 -preset slow -crf 18 output.mp4


    


  • ffmpeg : Remove audio from nested folders filled with videos without renaming

    18 novembre 2022, par Maxwell

    I have a dataset that is filled with videos, only the visual component of the videos is useful to me so I would like remove the audio data to save space and hopefully improve load times. How can I accomplish this with ffmpeg ? Furthuremore, the file names must be kept the same. The dataset is ucf101 and is formated in 101 sub-folders full of .avi videos 7gb. I would like to use windows 10 cmd.

    


  • How to merge several videos in a grid, in one video ? [closed]

    14 mai 2021, par Kayra Uckilinc

    I have 36 video files with same dimensions and want to concatenate them into a one single video with 6x6 grid.

    


    Ideally is non-square number of videos are given for example 12, a 4x3 grid as the most square it can be would be great.

    


    I tried with matplotlib's animation library but failed to concatenate videos in both directions first as row then as columns.

    


    Any help is appriciated !