Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (72)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

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

Sur d’autres sites (9400)

  • Steps of using ffmpeg in visual studio 2019 ? [closed]

    15 avril 2020, par taimoor1990

    I have to use ffmpeg libraries which I am new to. Currently I am trying to build a basic hello world application that uses ffmpeg. I have googled multiple times there are some answers, saying something like static include these libraries and such comments which I am not sure how. I am looking for a step by step guide to link ffmpeg with a basic hello world app.

    


  • MoviePy : Concatenating video clips causes weird glitches in final video

    16 mai 2022, par JohnSmithy1266

    Is there a way to successfully always patch up any clips together in such a way that prevents weird glitches ? I put together a .mp4 from smaller .mp4 files and I got a final video with weird glitches. I am running Python 3.6.1 on Windows 10 through Sublime Text 3. I used MoviePy to do the concatenation.

    



    The code :

    



    from moviepy.editor import VideoFileClip, concatenate_videoclips
import os.path

path = "C:/Users/blah/videos/out/"

cliparray = []

for filename in os.listdir(path):
    cliparray.append(VideoFileClip(path + filename))

final_clip = concatenate_videoclips(cliparray)

final_clip.write_videofile(path + "concatenatedvideo.mp4", codec = "libx264")


    



    The weird glitches :

    



      

    1. One of the clips turns into a 3x3 grid of smaller clips.
    2. 


    3. Another has the audio not lined up with the video
    4. 


    5. Another is sped up faster than what was normal.
    6. 


    


  • Compression rate (final size) ffmpeg with h263 as codec, can be improved ?

    29 août 2013, par voskyc

    With the following data :

    Sample 1 :
    vcodec : H263
    Duration : 4seconds
    Resolution:1288/720
    FR : 30fps/s
    datarate : 195.135 kB/s
    MP3 : 44HZ, 16bits


    Size file : 5.84MB.

    Sample 2 :
    vcodec : H263
    Duration : 4seconds
    Resolution:640/480
    FR : 30fps/s
    datarate : 195.135 kB/s
    MP3 : 44HZ, 16bits


    Size file = 3.34MB.

    Both in flv container.

    Aren't those sizes a little bit high for 4 second video ?

    I believe we are doing some kind of error or missing an optimization.
    Should we decrease the datarate ?
    Maybe we are missing some option for h263 encoding with FFMPEG ?.

    Thanks a lot in advance for your suggestions.

    Note : no, we "can not" use h264. :-)