Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (46)

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

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

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

  • Anomalie #2025 : Surlignage intempestif

    20 septembre 2011, par tetue -

    Ceinture et bretelles : la classe pas_surlignable est passée par défaut sur toutes les balises de la dist depuis Changeset 50225 (c’est inutile, du coup ?)

  • How to use NSProcessInfo's operatingSystemVersion property in place of gestaltSystemVersionMinor and gestaltSystemVersionBugFix

    28 octobre 2016, par Michael Whiteacre

    Newbie here, but longtime frequenter of this essential resource.

    Using :
    MacBook Pro (Retina, 13-inch, Early 2015).
    Processor : 3.1 GHz Intel Core i7
    Memory : 16 GB 1867 MHz DDR3
    Running Yosemite 10.10.5

    I’m attempting to compile my own Perian- and FFmpeg-based FFusion.component (for Quicktime), for 10.11 using Xcode 7.2.1, and in this relatively simple project, as in others, am trying to move away from Gestalt. The original FFusion-RJVB.xcodeproj I’m employing is Xcode-3.2 compatible.

    I have yet to find a clear, definitive solution to what must appear a painfully simple problem to you all. Here is the Gestalt version :
    `

    #if TARGET_OS_MAC
    static int GetSystemMinorVersion()
    {
       static SInt32 minorVersion = -1;
       if (minorVersion == -1)
           Gestalt(gestaltSystemVersionMinor, &minorVersion);

       return minorVersion;
    }

    static int GetSystemMicroVersion()
    {
       static SInt32 microVersion = -1;
       if (microVersion == -1)
           Gestalt(gestaltSystemVersionBugFix, &microVersion);

       return microVersion;
    }
    #endif

    `
    I’ve tried what seems like endless variations of NSProcessInfo i.e.

    ([[NSProcessInfo processInfo] respondsToSelector:@selector(operatingSystemVersion)])

    but I’m afraid I’m not formatting it correctly to achieve my ends. It just hasn’t ’clicked’ in my head yet, so Im hoping someone can give me a push when I see the difference between the gestalt version, my stumbling attempts, and the correct way.

    Many thanks.

  • mov : move stsd finalization to an appropriate place

    14 octobre 2016, par Hendrik Leppkes
    mov : move stsd finalization to an appropriate place
    

    mov_finalize_stsd_codec parses stream information from the ALAC extradata,
    so run it after the extradata processing is completed in mov_read_stsd.

    Fixes playback of 96kHz ALAC streams muxed by qaac or the reference alac encoder.
    Fixes trac ticket #5826

    • [DH] libavformat/mov.c