Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (111)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

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

Sur d’autres sites (10514)

  • input seek in ffmpeg-python

    14 octobre 2022, par Mauro Gentile

    ffmpeg -ss 00:05:20 -i input.mp4 -t 00:10:00 -c:v copy -c:a copy output3.mp4
extracts the video segment quickly because of the input seek -ss being placed before -i.

    


    Which is the equivalent expression in ffmpeg-python ?

    


  • ffmpeg fix audio of MP4 files

    26 mai 2021, par John Roberts

    I have a few MP4 files that when I play on my computer it plays fine. However, if I put it on a usb and try to play on TV the audio is muted. I've tried a few different TVs and same problem. If I play it on my fire TV with vlc player then it works. So it makes me think the audio codec isn't supported. Is there a way using ffmpeg to quickly re-encode just the audio so it works with the TV ? I used the vlc convert tool and selected the YouTube HD profile and that works but it takes forever to encode as it's a 2hr long video

    


  • FFMPEG - skipping the decode of some keyframes causes delay ?

    12 septembre 2018, par Gura

    I’m trying to decode some keyframes in my app [1 second away from each other], and noticed that if I don’t decode ALL keyfrmaes on the way, I get a weird delay in the decoded frames [the created pixel-buffer shows an old frame].

    Any ideas why this might happen ?
    Thanks !