Recherche avancée

Médias (91)

Autres articles (76)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

Sur d’autres sites (4940)

  • +"archived version" download link

    6 janvier 2013, par scottschiller

    m doc/download/index.html +"archived version" download link

  • Log "no flash" message as INFO

    31 décembre 2012, par scottschiller

    m script/soundmanager2-jsmin.js m script/soundmanager2.js Log "no flash" message as INFO

  • Trying to compile x264 and ffmpeg for iPhone - "missing required architecture arm in file"

    11 février 2013, par jtrim

    I'm trying to compile x264 for use in an iPhone application. I see there are instructions on how to compile ffmpeg for use on the platform here : http://lists.mplayerhq.hu/pipermail/ffmpeg-devel/2009-October/076618.html , but I can't seem to find anything this complete for compiling x264 on the iPhone. I've found this source tree : http://gitorious.org/x264-arm that seems to have support for the ARM platform.

    Here is my config line :

    ./configure —cross-prefix=/usr/bin/ —host=arm-apple-darwin10 —extra-cflags="-B /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.2.sdk/usr/lib/ -I /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.2.sdk/usr/lib/"
    

    ...and inside configure I'm using the gas-preprocessor script (first link above) as my assembler :

    gas-preprocessor.pl gcc
    

    When I start compiling, it chunks away for a little while, then it spits out these warnings and a huge list of undefined symbols :

    ld : warning : option -s is obsolete and being ignored
    ld : warning : -force_cpusubtype_ALL will become unsupported for ARM architectures
    ld : warning : in /usr/lib/crt1.o, missing required architecture arm in file
    ld : warning : in /usr/X11R6/lib/libX11.dylib, missing required architecture arm in file
    ld : warning : in /usr/lib/libm.dylib, missing required architecture arm in file
    ld : warning : in /usr/lib/libpthread.dylib, missing required architecture arm in file
    ld : warning : in /usr/lib/libgcc_s.1.dylib, missing required architecture arm in file
    ld : warning : in /usr/lib/libSystem.dylib, missing required architecture arm in file
    Undefined symbols :
    

    My guess would be that the problem has to do with the "missing required architecture arm in file" warning...any ideas ?