Recherche avancée

Médias (91)

Autres articles (105)

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

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (10456)

  • FFServer does not stop

    18 mai 2014, par user3235818

    I am trying to stream video from my webcam to a website that I created, using FFMpeg and FFServer on my Ubuntu 12.04 machine. I can successfully start FFServer with an ffserver1.conf file I’ve made, but when I stop FFServer (with crtl+c) to make changes to my config file, and try to start FFServer again, I get an error : Could not start server. Then I try to start the server with the default ffserver.conf (in /etc), I get an error : bind(port 8090) : Address already in use. Sometimes I also get Deleting feed file "/tmp/feed1.ffm’ as stream counts differ (4 != 1).

    It seems to me that the server is not completely stopping when I kill it in the terminal with ctrl+c. Is there another way to stop FFServer ? Or should I just get a different version - I’m currently using version 0.10.11-7:0.10.11-1 precisce1.

    Thank you

  • Fix flv files that stop early

    19 octobre 2012, par Xonar

    I downloaded some flv videos some time ago and when watching them they stop at a point. If I skip past that point they continue playing fine up until another point which I can then skip past again (and the cycle goes on until the end of the video)

    I already tried

    avconv -i input.flv -acodec copy -vcodec copy -g 1 output.flv

    To my understanding from reading alot of mostly useless posts regarding this issue the there isn't any keyframes in my metadata and then stop when there is a bad frame.

    I tried setting -g higher but output.flv stops at the same point as where the original file stops for the first time. Is there any tool that can fix this.

    I can't remember where the original links are located and re-downloading isn't a option and as you can see my re-encoding attempts has failed.

    I am using Linux Ubuntu, so I can't use the Windows tools that are available.

  • ffmpeg on ubuntu - how to stop recording the video ?

    27 mai 2018, par Dcbnvn

    I use program ffmpeg to record video from screen :

    ffmpeg -f x11grab -r 15 -s 1280x1024 -i :1 -vcodec h264 -crf 30 -fs 600000 -y myvideo.mp4 -nostdin -nostats < /dev/null > /dev/null 2>&1 &

    I set option -fs (from help : -fs limit_size set the limit file size in bytes)

    The recording is executing in background

    My question is - Is there any command in ffmpeg, that allows to stop recording ? I call ffmpeg from bash script and after that I invoke other script, so I need to stop recording exactly after second script executed.