Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (28)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (3782)

  • extract timestamp from a frame. OpenCV gives wrong results

    24 juillet 2012, par ar ar ar

    I have an avi video with H264-MPEG-4 AVC codec.

    I have a c++ project in which I use OpenCv. So I take every frame with OpenCv and want to know about the timestamp of the frame in reference to the video length.

    OpenCv p0orperties give me wrong results as for the timestamp and the frame count.

    So I thought of using ffmpeg to extract the correct timestamp of the frame, but my kwoleedge of ffmpeg is minimal.

    Can somebody advice what I need to do ?? Maybe which libraries of ffmpeg to use ?

    Or to give me an answer why is this happening to openCv ?

  • Disable i8x8 in lossless

    20 juillet 2014, par Fiona Glaser
    Disable i8x8 in lossless
    

    x264’s implementation was slightly incorrect due to a vague spec, so some
    decoders decoded video incorrectly.

    Minimal impact on compression.

    • [DH] encoder/encoder.c
  • File created in subprocess.run not found by os.listdir()

    13 novembre 2019, par Abitbol

    I am using subprocess to launch an instance of ffmpeg extracting frames in a folder. Then I do os.listdir on that same folder and it returns an empty list ; off course I would except to see the files created by ffmpeg listed.

    Here is a minimal example

    import os
    import subprocess

    folder = 'generated'
    subprocess.run(['ffmpeg', '-i', 'input.mp4', '-vf', 'fps=4', f'{folder}/%05d.png'])
    print(os.listdir(folder))  # []

    I can testify that the files are created while the script is running.

    In the full example I am using ffmpeg complex filter to generate two output, I don’t think that is the source of the problem.