Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (96)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (6582)

  • Programmatically capture X11 region with ffmpeg in C/whatever

    26 février 2013, par zw0rk

    There is an input format option to ffmpeg — x11grab which allows one to capture specified region and output it to file/stream. I'm trying to do the same thing programmatically, but i haven't found any non-basic tutorials/reference for ffmpeg API.

    I wonder, how it is possible to open x11 region with avformat_input_file or something like this. Or should i do it with XCopyArea/etc ?

    (Any programming language will satisfy)

  • Anomalie #2580 : les icones de l’espace privé sont pas belles et trop petites

    7 mars 2012, par Franck Dalot

    Comme il y a écris "pour discussion" dans l’image que tu donnes Fil perso, j’aime bien les couleurs, donc... Pour les boutons, j’aime les boutons "acceuil" et "édition" de Basic L’idée de la clé et du marteau pour "configuration ainsi que les boutons "activité", "squelettes", "maintenance" de COW, (...)

  • Unstable video stream after muxing from MKV (H.265) to MP4 using FFmpeg for web playback

    27 juin 2023, par Ryan Blignaut

    I have been encountering an issue while using FFmpeg to mux a video file from MKV format (encoded with H.265) to MP4 format, specifically for web playback. The resulting video stream appears to be unstable and exhibits inconsistencies across different platforms and browsers.

    


    The muxed video works perfectly on Google Chrome, indicating that the MP4 file itself is not the root cause of the issue.

    


    I am aware that Firefox does not support H.265 natively, so it's expected that the video won't play on that browser.

    


    However, I expected the H.265-encoded MP4 video to be compatible with IOS Safari, which has support for H.265 MP4 playback. Surprisingly, the video is missing IOS Safari.

    


    Transcoding the video is not a viable option due to hardware constraints yet I did test this and it seems that then playback works correctly then.

    


    I am using this command to mux with ffmpeg

    


    ffmpeg -i input.mkv -c:v copy -c:a copy output.mp4


    


    This produces the output.mp4

    


    In my html page I include this this video like this

    


        <video src="output.mp4" controls="controls"></video>&#xA;

    &#xA;

    I have also tried specifying the source explicitly

    &#xA;

        <video controls="controls">&#xA;        <source src="output.mp4" type="video/mp4">&#xA;    </source></video>&#xA;

    &#xA;

    I would greatly appreciate any insights or suggestions on how to resolve this issue and ensure stable playback of the H.265-encoded MP4 video on IOS Safari without transcoding .

    &#xA;