Recherche avancée

Médias (91)

Autres articles (109)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • How to save the whole transportstream(meaning incl. PAT and PMT,etc.) using ffmpeg

    15 mars 2018, par Harris Tailor

    I have been searching the whole Internet for a long time and seems it can only save video/audio using ffmpeg,any help or advice will be appreciate !thanks !

  • hevc : store the short term rps flag and size in the context

    25 janvier 2015, par Hendrik Leppkes
    hevc : store the short term rps flag and size in the context
    

    For future use by hardware accelerators.

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] libavcodec/hevc.c
    • [DBH] libavcodec/hevc.h
  • Android screencast function with Device been Root

    4 août 2015, par facebook-1663245907229773

    I am working on how to create a smooth mp4 format video in an android device which has been rooted. (This means that we already have the permission to access frame buffer).

    But now i have no idea to figure out this function. My current idea is :

    1. Screenshot a lot of screen image according to /dev/graphics/fb0

    2. Convert images to video use ffmpeg in android

    I am facing a few issues :

    1. I cant screenshot large images. This action is very costly to the CPU which may cause the mobile phone to run unsmoothly.

    2. Even if I screenshot enough images, it take lots of time to convert images into mp4 video.

    My ffmpeg command is as below :

     ./ffmpeg -y -f image2 -i /mnt/sdcard/image%d.jpg -s 320x240 /mnt/sdcard/temp/test.mp4

    Any suggestions ?