Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (98)

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

  • Save changed frame in FFMPEG API

    23 mars 2015, par Vaigard

    I extracts frames from H.264 video by avcodec_decode_video2(pCodecCtx, pFrame, &frameFinished, &packet); procedure (like in example from https://github.com/chelyaev/ffmpeg-tutorial/blob/master/tutorial01.c) and changed values of samples. How I can save these changes in original video ? After the change of the frame by the pointer he does not change.

    And I have a problem with avcodec_encode_video2 function : assertion avctx->codec->encode2 failed at .... What does this mean ?

    Thank you.

  • ffmpeg how to save stream to disk and restream at the same time [duplicate]

    24 juin 2020, par jackyyy

    For example, I have a url 'http://www.stream_on_internet.com/index.m3u8',
I know how to save it to disk

    


    ffmpeg -i url -c copy index.mkv

    


    but I want to broadcast it on my local network at the same time

    


    http://192.168.1.1:8080/index.m3u8

    


    so could anyone tell me how to do it ?

    


  • Save JavaScript Video Blob to File on Server with PHP

    28 décembre 2016, par user3783155

    How is a video blob (in JavaScript) sent to server using AJAX and saved as a file with PHP ?

    I know an image can be, with the following PHP code :

    <?php
    $img = $_POST['imageBase64'];
    $img = str_replace('data:image/png;base64,', '', $img);
    $img = str_replace(' ', '+', $img);
    $fileData = base64_decode($img);

    file_put_contents($fileName, $fileData);
    ?>

    but I would like to know how this can be done with a video blob, so I can use it with FFmpeg.