Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (63)

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

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (9144)

  • video playlist to rtmp server seamless playback using ffmpeg without re-encoding

    25 février 2020, par hedgehog90

    I have a list of rtmp compatible videos that make up a continuous playlist.

    I’ve run into the common problem, that if I try to stream each one sequentially using separate ffmpeg commands, there is a significant gap that occurs on the streaming service.

    I not only want to eliminate this gap, but also adapt the ffmpeg output to playlist updates if it’s edited on the fly, much like how a playlist system works in any media player, as well as a basic seeking mechanism.

    By what method is this possible ?

    Also - I know I’m asking a lot in one question, and I suspect the answer is a definitive ’no’ - but I’d like to know if it is possible to use different resolutions and/or frame rates without stopping and starting the rtmp stream.

    Thanks.

  • FFmpeg missing frame after H264/TS to RAW/AVI

    13 août 2013, par alexbuisson

    While converting a H263/TS to a RAW/AVI with

    ffmpeg -i in.ts -vcodec rawvideo -pix_fmt yuv420p out.avi

    I found that the output AVI file had less frame than expected. It may come from PTS error in the TS, but if I convert it first to MP4 using the -vcodec copy option, I don't lost frame while performing MP4 to RAW/AVI.

    Is there a solution to ignore the PTS to convert directly from TS ?

  • Nodejs : how to create video from images ?

    18 janvier 2020, par Amit Jain

    How can you create a video from given images in Node.js ?
    I tried using the ffmpeg npm module but it won’t work for me, and I also tried using the videoshow npm module and that also did not work for me.

    Can anyone suggest how to create video from images and also give me some basic code to run ?