Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (39)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (6552)

  • QProcess not starting

    14 avril 2015, par testus

    I have following code :

    proc = new QProcess();
    proc->startDetached("C:\\ffmpeg.exe", QStringList() <<"-i"<< "C:\\pics\\frame%d.png"<< "-r"<< "30" << "-vcodec"<< "ffv1" << "C:\\test.avi" );
    connect(proc,SIGNAL(finished(int)),this,SLOT(finishedFFMPEG(int)));

    For some reason the SIGNAL for finished() and started() never gets called. The test.avi file is being created correctly.

    What am I missing here ?

  • ffplay : factorize thread starting and stopping code into decoder

    26 octobre 2014, par Marton Balint
    ffplay : factorize thread starting and stopping code into decoder
    

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] ffplay.c
  • Starting multiple upstart services after a parent service

    16 mars 2013, par CoryG

    I'm trying to configure upstart to start an ffserver process and many (21) ffmpeg processes - the ffmpeg processes must be started after the ffserver process and all of them should be respawned if they stop.

    So far, for the ffserver process I have :

    # ffserver

    description     "ffserver"

    start on (filesystem and net-device-up IFACE=eth0) and runlevel [2345]
    stop on runlevel [!2345]

    respawn
    respawn limit 10 5

    pre-start script
       test -x /usr/local/bin/ffmpeg || { stop; exit 0; }
       test -x /usr/local/bin/ffserver || { stop; exit 0; }
    end script

    script
       /usr/local/bin/ffserver -f /etc/ffserver.conf
    end script

    post-start script
       PID=`status ffserver | egrep -oi &#39;([0-9]+)$&#39; | head -n1`
       echo $PID > /var/run/ffserver.pid
    end script

    post-stop script
       rm -f /var/run/ffserver.pid
    end script

    Which works fine for ffserver, however I would like to know how to get the ffmpeg services into a similar startup configuration managed by upstart (ideally within a single upstart config file, but I can make 21 different config files if required).

    (it might be worth noting that I'm using the NoDaemon option within the /etc/ffserver.conf file to ensure it doesn't try to daemonize itself and the ffmpeg instances will likewise not be self-daemonized - I would however like pid files for them in /var/run/ffmpegx.pid where x is an identifier [[0-15],0_1_2_3,4_5_6_7,8_9_10_11,12_13_14_15,all] for some other reasons)