Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (104)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (7787)

  • ffmpeg MAMP "dyld : Library not loaded" error

    9 octobre 2013, par benedict_w

    I am using ffmpeg on Mac OSX 10.7.3 in MAMP through PHP's exec() command, I have an absolute path set to call ffmpeg, e.g.

    /opt/local/bin/ffmpeg -i "/sample.avi"

    But I receive the following error -

    dyld: Library not loaded: /opt/local/lib/libjpeg.8.dylib  Referenced from: /opt/local/lib/libopenjpeg.1.dylib  Reason: Incompatible library version: libopenjpeg.1.dylib requires version 13.0.0 or later, but libJPEG.dylib provides version 12.0.0

    N.B. ffmpeg was installed through Macports.

    It works from the command line.

    What to do ?

    EDIT

    I've reopened this - originally thought shell_exec() solved the issue, but infact it should be called differently - and I didn't realise until investigating further today. Here is my code using shell_exec and still giving the error above :

    $cmd = '/opt/local/bin/ffmpeg -h';
    $cmd = escapeshellcmd($cmd) . ' 2>&1';
    $output = shell_exec($cmd);
    var_dump($output);
  • VP8 Codec SDK "Eider" Released

    11 mai 2012, par noreply@blogger.com (Anonymous)
  • Understanding CPU usage in linux using "top" command for VLC usage

    25 octobre 2014, par user3130013

    I have 2 quad core processors and I cant seem to understand what "top" is telling me.

    I run a VLC transcoding application and i currently transcode 8 streams and "top" shows me that I am using 200% of my CPU. Now for a Pentium 3 that would be horribly bad but I dont understand how Linux calculates CPU usage with multi core processors.

    Does this mean that my both processors are utilized 100% ? 2 cores at 100% ?

    I also ran ffmpeg application for the same purpose and I could run 8 instances at 90% each which seemed to me like each processoss would occupy 1 core.

    VLC has much lower CPU usage footprint so I just want to make sure I am not killing the hardware.