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)

  • avformat/dashenc: Disable streaming for webm output

    10 April 2019, by Karthick J
    avformat/dashenc: Disable streaming for webm output
    

    Currently streaming for webm output doesn't work.
    Disabling explicitly will make sure that the manifest will get generated correctly.

    • [DH] libavformat/dashenc.c
  • Error while streaming using ffserver

    4 September 2013, by Nani

    I am trying to stream a combined/stitched video using ffserver and getting an error "Feed '/tmp/feed1.ffm' stream number does not match registered feed"

    Here is what I am doing
    1) grab screen 1 & 2 using ffmpeg x11grab option
    2) Stitch them using ffmpeg -filter_complex option
    3) Stream the stitched video using the ffserver.

    Instead of streaming if I redirect the ffmpeg stitched output to a file I dont see any issue.

  • Best streaming way for images generated on the fly

    28 November 2018, by Vincent Bavaro

    Good morning,
    I have a server that sends me an increasing sequence of images and I need to stream them as a VOD to anyone that, after it inputs username and password in a simple HTML5 site, accesses them. I found ffmpeg to be the best solution so I’m studying it a lot these days. I wanted to know from experts in ffmpeg and streaming, what should be my main route to follow for my purposes.

    My personal thought and what I’m working on is to have ffmpeg encode the images on the fly to a video through a pipe, and then with another command have it transformed into segmented MPeg-4 and playlist for HLS stream, I think I will use an apache webserver for that as well. Is this the best course to follow? Anyone has better/more efficient (like a single command)/more easy solutions to develop?