Advanced search

Medias (91)

Other articles (67)

  • La sauvegarde automatique de canaux SPIP

    1 April 2010, by

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Script d’installation automatique de MediaSPIP

    25 April 2011, by

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Automated installation script of MediaSPIP

    25 April 2011, by

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

On other websites (6219)

  • Is there a way to get ffmpeg to continuously output streaming content to s3?

    24 January 2021, by Pineapple Joe

    I have ffmpeg receiving an rtsp stream and its outputting hls files. I want those files to be continuously stored on s3. its not clear how to do this.

    


    I've seen other similar posts but the solutions are always single file outputs piped to the aws cli. In this case I have an indefinite incoming stream and multiple files to output.

    


    This is what I currently have.

    


       ffmpeg <input stream="stream" here="here" />&#xA;   -f segment \&#xA;   -segment_list_flags live \&#xA;   -segment_time 1 \&#xA;   -segment_list_size 5 \&#xA;   -segment_format mpegts \&#xA;   -segment_list public/st/streaming.m3u8 \&#xA;   -segment_list_type m3u8 \&#xA;   -segment_list_entry_prefix ./ \&#xA;   public/st/%d.ts&#xA;

    &#xA;

    I also have limited space as it will be running in lambda so its not like I can just store the files locally then copy after its done.

    &#xA;

    is this possible?

    &#xA;

  • streaming video to c# app

    15 October 2014, by Ilya

    I’m writing a streaming app, and I need to show a preview in my app.

    I running ffmpeg process like ffmpeg -rtbufsize 100M -f dshow -i video="Logitech HD Webcam C525" -c:v libx264 -pix_fmt yuv420p  -an -tune zerolatency -preset ultrafast -f tee -map 0:v "[f=flv]rtmp://video.dev/test/test|[f=mpegts]udp://localhost:18234"
    which streams into 2 output: remote rtmp and to local source for preview.

    So, what method I can use to show local preview?

    I tried this Show a tcp video stream (from FFPLAY / FFMPEG) in an C# application, but ffplay window doesn’t shows, maybe because it creates console window first, and then new window with video.

  • avfilter/asrc_flite: use streaming function

    3 December 2023, by Paul B Mahol
    avfilter/asrc_flite: use streaming function
    

    Fix continuous accumulation of audio samples for big txt inputs.

    • [DH] libavfilter/asrc_flite.c