Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (12)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

Sur d’autres sites (3005)

  • How to add current UTC Time in MKV file metadata using ffmpeg ?

    1er mai 2022, par Shahpari

    I am not sure if it's possible, but is there anyway we can add current UTC time inside the mkv metatag using ffmpeg ? i read https://wiki.multimedia.cx/index.php?title=FFmpeg_Metadata but i could not find anything.

    


    -metadata "Creation Time"="Need to add time tag/code"


    


    output will show

    


    Creation Time: UTC 2020-06-04 02:40:29


    


  • Split video on android via ffmpeg

    27 septembre 2016, par Lior

    I have tried to use ffmpeg to split video,
    by adding compile 'org.bytedeco:javacv:1.+'and
    compile 'org.bytedeco.javacpp-presets:ffmpeg:3.1.2-1.2:android-arm' to my gradle file i got all of *.os files which is JNI wrap of all ffmpeg library to my android project .

    According ffmpeg wiki there is option to split the video but how i deal with command like ffmpeg -ss 00:22:30 -i Mononoke.Hime.mkv -ss 00:00:30 -frames:v 1 out3.jpg in android.

    I hope for some help if someone delt with splitting video file on android before, Thanks.

  • Is there a way to non-linear speed-up video with ffmpeg ?

    3 mars 2020, par leoossa

    I’ve seen thousands of websites suggesting using setpts to speedup video

    ffmpeg -i input.mp4 -filter:v "setpts=0.5*PTS" output.mp4

    The thing is - I don’t want to speed-up video in a linear way. I want it to accelerate. So I want ’acceleration’ (Wiki) to be constant and ’speed’ to be growing.

    From what I’ve seen on ffmpeg docs setpts can be an equation, I tried to play with PREV_OUTPTS but with no success.
    Is it even possible to achieve that with ffmpeg ?