Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (63)

  • 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

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

Sur d’autres sites (8908)

  • How to convert (re-wrap) Transport Stream to MPEG-4 container in iOS app ?

    28 novembre 2018, par Aleksandr Suvorov

    I have a live stream in .ts format, containing AAC audio and H.264 video. I want to play it on iOS devices. I tried to use a movie player based on FFmpeg to decode and play video, but the audio was lagging.

    Can I rewrap this Transport Stream to an MPEG-4 container to play on iOS devices – without converting it server-side ?

    The server returns me a URL of the .ts live stream and my goal is to play this stream on iOS devices without an .m3u8 playlist because I can’t get it from the server.

  • How to convert (re-wrap) Transport Stream to MPEG-4 container in iOS app ?

    27 janvier 2015, par Aleksandr Suvorov

    I have a live stream in .ts format, containing AAC audio and H.264 video. I want to play it on iOS devices. I tried to use a movie player based on FFmpeg to decode and play video, but the audio was lagging.

    Can I rewrap this Transport Stream to an MPEG-4 container to play on iOS devices – without converting it server-side ?

    The server returns me a URL of the .ts live stream and my goal is to play this stream on iOS devices without an .m3u8 playlist because I can’t get it from the server.

  • Grep ffmpeg time/duration to get progress stream ?

    2 février 2014, par paulkon

    Is there a way to grep ffmpeg's unfriendly output to get the progress (time/duration) into a variable ? I've tried this on powershell already but i can't get seem to get a hold of ffmpeg's continuous output via pipe redirection and using the --line-buffered flag in grep.

    Here is what I came up with but it only returns after the encoding process has finished.

    ffmpeg -i $input $output 2>&1 | grep --line-buffered -oP "(?<=time=)[0-9:]*"