Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (92)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (10870)

  • HTML5 Video plays on macOS safari, not iOS Safari

    8 février 2019, par BenJ

    Everything seems to work in Safari and Chrome on the desktop. But iOS is not cooperating.

    Here’s how I encoded the video :

    ffmpeg -an -i orig.mp4 -vcodec libx264 -crf 30 -maxrate 900 -pix_fmt yuv420p -profile:v baseline -level 3 homepage.mp4

    Here’s my html :

    <video playsinline="playsinline" muted="muted" autoplay="autoplay" loop="loop" src="/assets/videos/homepage.mp4" type="video/mp4"></video>

    Here’s my css :

    video {
       position: fixed;
       top: 50%;
       left: 50%;
       min-width: 100%;
       min-height: 100%;
       width: auto;
       height: auto;
       z-index: -100;
       transform: translateX(-50%) translateY(-50%);
       background-size: cover;
       transition: 1s opacity;
    }

    If you’d like to see for yourself : 2606southave.com

  • Why does ffmpeg4android fail on Galaxy S6 ?

    26 novembre 2015, par Andrei

    I have created an app that uses the ffmpeg4android library found here :
    http://androidwarzone.blogspot.co.il/2011/12/ffmpeg4android.html

    I succesfully managed to encode & crop video using the following command :
    "ffmpeg -y -i [input_video_path] -preset ultrafast -strict -2 -vf crop=480:480 :[startX]:0 -r 25 -ab 48000 -ac 2 -ar 22050 -b 2097k [outputPath]"

    This command works on several devices : motorola G (api 22), galaxy s4 being some of them.

    Yet, on galaxy S6 it crashes when executing the command.
    In the ffmpeg log, it says that it does not recognize the preset option. Can anyone help me understand why and what is the proper fix ?

  • avfilter/idet : add current frame classification to metadata

    1er novembre 2014, par Kevin Mitchell
    avfilter/idet : add current frame classification to metadata
    

    Fixes ticket 3832

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] doc/filters.texi
    • [DH] libavfilter/vf_idet.c