Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (54)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

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

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

Sur d’autres sites (6252)

  • How to record a single bitmap image using segment time option in ffmpeg

    16 juillet 2020, par jfowkes

    We have an application using ffmpeg to record an RTSP stream. We split this stream into timestamped segments using the following options :

    


    -f segment -segment_time 60 -strftime 1 "+%Y-%m-%d_%H-%M-%S.mp4"

    


    We now have a requirement to replace this stream with a "blank screen" under certain conditions (for privacy reasons).

    


    I know it is possible to encode a bitmap for a certain length of time using ffmpeg (Creating a video from a single image for a specific duration in ffmpeg).

    


    Is it possible to treat this single bitmap as a "stream" that can be recorded using the segment feature ?

    


    I have tried combining the two commands :

    


    ffmpeg -loop -i black_1280x720.bmp -c:v libx264 -pix_fmt yuv420p -vf scale=1280:720 -f segment -segment_time 60 -strftime 1 "+%Y-%m-%d_%H-%M-%S.mp4"

    


    where black_1280x720.bmp is a 1280x720 all-black bitmap. I get a Output file #0 does not contain any stream error.

    


  • Additionals : Update time method to allow single digit hour

    16 juin 2015, par Fridus
    Additionals : Update time method to allow single digit hour
    

    Closes #1461

  • How to get a single libffmpeg.so file (OS X) ?

    16 février 2016, par SCK

    My android app needs a libffmpeg.so file.

    Environment :
    OS X 10.11.3, android-ndk r10e, ffmpeg 3.0.

    1.FFMPEG 2.5.4 build for Android with NDK r10d
    follow this post, I will get eight .so files(libavcodec.so, libavdevice.so, libavfilter.so, libavformat.so, libavutil.so, libpostproc.so, libswresample.so, libswscale.so), but what I need is a single .so files which contains the above eight files.

    1. I also got eight .a files(libavcodec.a, libavdevice.a, libavfilter.a, libavformat.a, libavutil.a, libpostproc.a, libswresample.a, libswscale.a),
      but failed to convert them into a single .so file
      OSX : How do I convert a static library to a dynamic one ? doesn’t seem to work on OS X