Recherche avancée

Médias (91)

Autres articles (14)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

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

Sur d’autres sites (2289)

  • check supported() before play/createSound() calls

    5 octobre 2010, par Scott Schiller

    m demo/template/deferred-example.html check supported() before play/createSound() calls

  • Excluding ARMv5 and ARMv6 devices from Google Play

    14 mai 2015, par Taras

    I build a ffmpeg based library for my project and the outputs are really huge. Is it OK to remove the support of old arm processors and leave only arm-v7 and x86 libraries ?

    I suspect that arm-v7 won’t work on older arm processors.

    The application min sdk is 4.0.3 and the question is whether the percentage of devices with old ARM is too small so I can filter them out on Google Play ?

  • Play each frame once at fixed rate in ffmpeg

    8 septembre 2023, par Wei Hong

    I have a bunch of videos at various frame rates, some with variable frame rate.

    


      

    1. First, I wish to play back every frame only once, at 24 fps, no exceptions. I do not want any extra frames or dropped frames. I know that the play length may well change, and audio is unimportant.

      


    2. 


    3. Next, I wish to do the above after having thrown out all duplicate frames.

      


    4. 


    


    Here's what I've been using in a Windows batch file. It almost always works, but for some videos I've caught it dropping a frame :

    


    for %%i in (*.mp4) do ffmpeg -y -i "%%i" -an -c copy -f h264 "%%i.h264"

for %%i in (*.h264) do ffmpeg -y -r 24 -i "%%i" -c copy "%%i.R.mp4"

for %%i in (*.R.mp4) do ffmpeg -y -i "%%i"  -b:v 40M -vf mpdecimate,setpts=N/24/TB "MPD%%i.mp4"


    


    What am I doing wrong ?

    


    EDIT : The dropped frames do greatly differ from the previous frames so it's not just mpdecimate at work.