Recherche avancée

Médias (91)

Autres articles (68)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (6979)

  • avisynth : corrected interlace detection

    24 mai 2021, par emcodem
    avisynth : corrected interlace detection
    

    AviSynth works on frame-based video by default, which can
    be either progressive or interlaced. Some filters can break
    frames into half-height fields, at which point it considers
    the clip to be field-based (avs_is_field_based can be used
    to check for this situation).

    To properly detect the field order of a typical video clip,
    the frame needs to have been weaved back together already,
    so avs_is_field_based should actually report 'false' when
    checked.

    Signed-off-by : Stephen Hutchinson <qyot27@gmail.com>

    • [DH] libavformat/avisynth.c
  • FFMpeg + OpenAL

    24 juillet 2013, par Dekowta

    I've been having a problem decoding different codecs into PCM 16 little-endian which is the supported format for OpenAL (I believe that is correct).

    I am using the windows pre-compiled libraries for FFMpeg (dont know if that effects anything).

    The code I have so far is here http://pastebin.com/T4wGL72a

    I have aiff and wav working (though with single channel OpenAL wants to have half the frequency and im not really sure why).

    The main problem is encoded audio files.

    mp3 files play sometimes (sometime get missing header) but end up stuttering with noise and are high pitched.

    ac3 files played the first preloaded buffers and then the frame would not have any more decoded data in the data array (did not check to see if the packet fetched encoded data or not).

    ogg files are the same as ac3

    m4a files would never finish the frame so I have no idea what happens when they do.

    wma files stutter and have a lot of noise but it is not high pitched like mp3 files

    I don't work with audio very often so its difficult for me to get my head round it and this is also the first time I've worked with FFMpeg.

    I'm sure there is something i'm doing very wrong I just need a hand on pointing out where it is.

    Thanks

    Chris.

  • configure : Use indirection for the -o assembler flag also for x86asm

    14 mars 2018, par Diego Biurrun
    configure : Use indirection for the -o assembler flag also for x86asm
    

    Similar indirections are used for the -o compiler/assembler flag to
    account for differences in compiler/assembler syntax. For x86asm half
    the infrastructure for doing the same currently exists unused.
    Finish and use that infrastructure for consistency.

    • [DBH] configure