Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (55)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (7049)

  • movenc : Allow to request not to use edit lists

    4 novembre 2014, par Martin Storsjö
    movenc : Allow to request not to use edit lists
    

    In this case, shift tracks to start from zero instead (potentially
    stretching the first sample in tracks that start later than the
    first one).

    Some software does not support edit lists at all, the adobe flash
    player seems to be one of these. This results in AV sync errors when
    edit lists are used to adjust AV sync.

    Some players, such as QuickTime, don’t respect the duration for
    audio packets, so if an audio track starts later than the video
    track and the first audio sample gets a duration longer than the
    actual amount of data in it, the result will be out of sync.

    Based on patches by Michael Niedermayer.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavformat/movenc.c
    • [DH] libavformat/movenc.h
  • movenc : Allow to request not to use edit lists

    4 novembre 2014, par Martin Storsjö
    movenc : Allow to request not to use edit lists
    

    In this case, shift tracks to start from zero instead (potentially
    stretching the first sample in tracks that start later than the
    first one).

    Some software does not support edit lists at all, the adobe flash
    player seems to be one of these. This results in AV sync errors when
    edit lists are used to adjust AV sync.

    Some players, such as QuickTime, don’t respect the duration for
    audio packets, so if an audio track starts later than the video
    track and the first audio sample gets a duration longer than the
    actual amount of data in it, the result will be out of sync.

    Based on patches by Michael Niedermayer.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/movenc.c
    • [DBH] libavformat/movenc.h
  • Core : Exclude some keyboard keys to prevent revalidating the field

    24 février 2015, par Arkni
    Core : Exclude some keyboard keys to prevent revalidating the field
    

    Avoid revalidate the field when pressing one of the following keys
    in ’onkeyup’ method :
    Shift => 16
    Alt => 18
    Caps lock => 20
    End => 35
    Home => 36
    Left arrow => 37
    Up arrow => 38
    Right arrow => 39
    Down arrow => 40
    Insert => 45
    Num lock => 144
    AltGr key => 225

    This helps especially with the remote method, which has a lot of
    overhead.

    Closes #1411