Recherche avancée

Médias (91)

Autres articles (100)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

Sur d’autres sites (10137)

  • RTMP Stream Save Video using FFMPEG

    9 août 2019, par Abhishek Sengupta

    I am having trouble saving a live stream to disk using FFMPEG.

    It is saving the file after running the command :

    ffmpeg -i rtmp://000.00.0.0/hls/test1705269295 -c copy -f mp4 /var/www/html/1_1564654090862.mp4

    But it is becoming corrupted, if we dont use CTRL+C to save it manually, while the stream is still live.

    Is there any way so that ffmpeg will automatically save the files properly when the live stream ends by the streamer ?

  • ffmpeg save remote file to user's computer

    18 mai 2018, par hmaxx

    I can cut and save a video from a remote server to my server using the below command :

    ffmpeg -ss 00:00:30 -i "example.com/test.mp4" -t 00:00:09 -acodec copy -vcodec copy -async 1 -y out.mp4

    I was wondering if I could prompt the user for a permission to save it on his computer instead of downloading it to my server. I will be using php with the exec function.

  • LARAVEL FFMpeg : Unable to save frame error

    9 novembre 2020, par Adrijus Jakučionis

    When I'm trying to save my thumbnail, I'm getting "Unable to save frame" error.

    


    I'm using https://github.com/protonemedia/laravel-ffmpeg Laravel-ffmpeg package, AWS S3 server.

    


    My code :

    


    Route::get('/thumbnail', function() {
    $file = FFMpeg::fromDisk('s3')
    ->open('/videos/71239_1598846328_p.mp4')
    ->getFrameFromSeconds(10)
    ->export()
    ->toDisk('s3')
    ->save('/videos/thumb.png');
    return "ok";
});


    


    Can someone tell me what I'm doing wrong ?