Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (70)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (10387)

  • avcodec/lcldec : Make PNG filter addressing match the code afterwards

    31 mai 2023, par Michael Niedermayer
    avcodec/lcldec : Make PNG filter addressing match the code afterwards
    

    Also update check accordingly

    Fixes : tickets/10237/mszh_306_306_yuv422_nocompress.avi
    Fixes : tickets/10237/mszh_306_306_yuv411_nocompress.avi

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

    • [DH] libavcodec/lcldec.c
  • Revision d82eb9d195 : Match unsigned types Fixes build warning in MSVC : vp9\vp9_dx_iface.c(420) : war

    29 avril 2013, par Johann

    Changed Paths :
     Modify /vp9/vp9_dx_iface.c



    Match unsigned types

    Fixes build warning in MSVC :
    vp9\vp9_dx_iface.c(420) : warning C4018 : '<' : signed/unsigned mismatch
    vp9\vp9_dx_iface.c(423) : warning C4018 : '<' : signed/unsigned mismatch

    Change-Id : Ia238071aee94b2f882c1e74c380adc3df506dfb6

  • ffmpeg Loop the short video so it can match the duration of the a long audio [closed]

    16 avril 2024, par andrew cummins

    I have a list of mp4 files and mp3 files in a directory. I need the following

    &#xA;

      &#xA;
    1. loop the short mp4 so it can match the duration of the mp3 file
    2. &#xA;

    3. export mp4 file with new audio.
    4. &#xA;

    5. But we want the mp4 in portrait mode.
    6. &#xA;

    &#xA;

    ffmpeg -stream_loop -1 -i video.mp4 -i audio.mp3 -map 0:v -map 1:a -preset slow -shortest -movflags &#x2B;faststart output.mp4&#xA;

    &#xA;

    I have this code in ffmpeg, but i would need to have output in portrait mode.

    &#xA;

    the code works, but the issue is having the video output in portrait mode without stretching the video.

    &#xA;