Recherche avancée

Médias (91)

Autres articles (39)

  • 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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (9438)

  • Add save/restore xmm registers in x86 assembly code

    7 avril 2011, par Johann

    Add save/restore xmm registers in x86 assembly code

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

  • 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 ?