Recherche avancée

Médias (91)

Autres articles (106)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

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

Sur d’autres sites (10644)

  • fftools/ffplay : stop using avfilter_graph_create_filter() incorrectly

    25 septembre 2024, par Anton Khirnov
    fftools/ffplay : stop using avfilter_graph_create_filter() incorrectly
    

    This function creates AND initializes a filter, so setting any filter
    options after it is wrong. It happens to work when the filter's init
    function does not touch the options in question, but is forbidden by the
    API and is not guaranteed to remain functional.

    Instead, use avfilter_graph_alloc_filter(), followed by setting the
    options, and avfilter_init_dict().

    • [DH] fftools/ffplay.c
  • FFMPEG RTMP streaming to FMS without stop ?

    24 juillet 2017, par Luis Mok

    I have some .mov files want to stream to Flash media server. i have already tried to stream a single .mov by FFMPEG command in terminal and it works, the FMS can display the thing i streaming in live.

    ffmpeg -re -i file1.mov -vcodec libx264 -f flv rtmp ://localhost/livepkgr/livestream

    Now i want to stream multiple files,
    i tried to use above command one by one,
    but it seems Flash media server stop the streaming when file1 is finished,
    then start the stream with file2.
    It makes the stream player stopped when file1 is finish, and have to refresh the page in order to continue on file2.

    i am calling the FFMPEG command by a C program in linux, i wonder is there any method that i can prevent the FMS stopped when i switch the file source in FFMPEG ? or is that possible to let FFMPEG constantly deliver the stream by multiple files source without stopped when a file finish ?

  • FFMPEG RTMP streaming to FMS without stop ?

    5 octobre 2012, par Luis Mok

    I have some .mov files want to stream to Flash media server. i have already tried to stream a single .mov by FFMPEG command in terminal and it works, the FMS can display the thing i streaming in live.

    ffmpeg -re -i file1.mov -vcodec libx264 -f flv rtmp ://localhost/livepkgr/livestream

    Now i want to stream multiple files,
    i tried to use above command one by one,
    but it seems Flash media server stop the streaming when file1 is finished,
    then start the stream with file2.
    It makes the stream player stopped when file1 is finish, and have to refresh the page in order to continue on file2.

    i am calling the FFMPEG command by a C program in linux, i wonder is there any method that i can prevent the FMS stopped when i switch the file source in FFMPEG ? or is that possible to let FFMPEG constantly deliver the stream by multiple files source without stopped when a file finish ?