Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (89)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

Sur d’autres sites (7546)

  • avformat/mca : clip timestamp when seeking into acceptable range

    10 septembre 2020, par Paul B Mahol
    avformat/mca : clip timestamp when seeking into acceptable range
    
    • [DH] libavformat/mca.c
  • Maximum MOV file supported audio / video length

    27 octobre 2020, par AKHILASH TP

    Thanks in advance.

    


    We use libav for MOV muxing. Below is the audio and video format used. Can you help us with our questions ?

    


    Video format - h264
Audio format - 4 channel, 24bit, 48KHz PCM

    


    Queries :

    


      

    1. Can you please guide us to find the maximum length supported for a MOV file ?
    2. 


    3. Does libav have any specific limitation related to the maximum duration for muxing a MOV file ?
    4. 


    


  • avformat/matroskadec : Improve length check

    27 mars 2019, par Andreas Rheinhardt via ffmpeg-devel
    avformat/matroskadec : Improve length check
    

    The earlier code had three flaws :

    1. The case of an unknown-sized element inside a finite-sized element
    (which is against the specifications) was not caught.

    2. The error message wasn't helpful : It compared the length of the child
    with the offset of the end of the parent and claimed that the first
    exceeds the latter, although that is not necessarily true.

    3. Unknown-sized elements that are not parsed can't be skipped. Given
    that according to the Matroska specifications only the segment and the
    clusters can be of unknown-size, this is handled by not allowing any
    other units to have infinite size whereas the earlier code would seek
    back by 1 byte upon encountering an infinite-size element that ought
    to be skipped.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@googlemail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/matroskadec.c