Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (76)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (9185)

  • dv : Fix small stack overread related to CVE-2011-3929 and CVE-2011-3936.

    27 janvier 2012, par Alex Converse

    dv : Fix small stack overread related to CVE-2011-3929 and CVE-2011-3936.

  • Too small ffmpeg rtsp decoding buffer

    30 janvier 2013, par gregoiregentil

    I'm decoding rtsp on Android with ffmpeg, and I quickly see pixelization when the image updates quickly or with a high resolution :

    working decoded frame

    non working decoded frame

    After googling, I found that it might be correlated to the UDP buffer size. I have then recompiled the ffmpeg library with the following parameters inside ffmpeg/libavformat/udp.c

    #define UDP_TX_BUF_SIZE 327680
    #define UDP_MAX_PKT_SIZE 655360

    It seems to improve but it still starts to fail at some point. Any idea which buffer I should increase and how ?

  • FFmpeg check audio channels for silence

    10 février 2019, par Tina J

    I have two .mp4 files, both having 8 (7.1) audio channels. But in fact, I’ve been told that one has a stereo audio channel + 2 SAP (secondary audio on channels 7-8), and the other one has 6 (5.1) audio channels + 2 SAP (on channels 7-8). So basically the later one has some [real] audio channels such as Center channel where that doesn’t exist in the former stereo one (although it has those channels, but apparently they are silent/mute).

    I’ve been trying to see some differentiating metadata to somehow differentiate the two using Mediainfo, but the metadata for both look exactly the same. Also tried some basic metadata retrieval with ffmpeg and ffprobe, again they both look the same - no luck :

    ffprobe -i 2ch.mp4 -show_streams -select_streams a:0

    So the question is : Does ffmpeg or ffprobe have any quick ways to differentiate those two ? Are there any audio filters that can detect if a specific audio channel is silent or not ? Or any other differentiating metadata ? I would prefer differentiating the two through some metadata than content analysis.

    This is a sample of 2-channel mp4 file, and this one is a sample of the 6-channel mp4.