Recherche avancée

Médias (0)

Mot : - Tags -/signalement

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (57)

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

  • MediaSPIP Player : les contrôles

    26 mai 2010, par

    Les contrôles à la souris du lecteur
    En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)

Sur d’autres sites (7848)

  • avformat/async : pass internal I/O error

    10 octobre 2015, par Zhang Rui
    avformat/async : pass internal I/O error
    

    av_fifo_generic_write() does not return any error code.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/async.c
  • How to get dimension and aspect ratio of input video and pass it as param to another input in the same command ?

    2 mars 2020, par theapache64

    I’ve a mp4 file. I want to create an input color feed with same dimension and sample aspect ratio. Currently, I use ffprobe to get dimension and sar as a separate command and pass it to ffmpeg command manually.

    ffmpeg -y
    -i input.mp4
    -i bgm.mp3
    -f lavfi -i color=c=black :s="1280"x"544":sar=1299/1280:d=3.0
    -filter_complex ...

    Is there any way to get dimension and sar of first input video to -f lavfi -i color.

    Something like

    -f lavfi -i color=c=black:s="widthOfFirstVideo"x"heightOfFirstVideo":sar=sarOfFirstVideo:d=3.0

  • Can you pass variable values from video to ffmpeg ? [closed]

    22 octobre 2020, par John

    I am trying to convert a folder of videos to HEVC and they are all different bitrates. I was hoping to batch convert all the files in the folder with ffmpeg and take the existing bitrate and pass 60% of it to ffmpeg. So ffmpeg, convert this file, and whatever it's current bitrate is, multiply it by .60 and use that for the new files bitrate. This way it would be dynamic. Can this be done ? This would be in Windows.

    &#xA;