Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (66)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

Sur d’autres sites (11102)

  • filesize is not growing as expected

    29 juillet 2019, par Oracy Martos

    I am trying to record a stream here on my machine to study ffmpeg library,
    but with(out) success.

    I have a file watcher to clean up bugged streams, that cleanup each 3 minutes files that have been not changed less then 3 minutes.

    The real problem is, if I use the command below :

    /usr/bin/ffmpeg -i http://sysrad.net:10090/ -y test.mp3

    this command doesn’t have any kind of codec or audio transformation, so my target file (test.mp3) become 256k quickly, but, if I use this command below :

    /usr/bin/ffmpeg -i http://sysrad.net:10090/ -y -b:a 8k -ac 1 -ar 11025 test.mp3

    My target file (test.mp3) keep 0k until the record has 256k, I am not sure if this is an Unix problem or ffmpeg problem.

    Other information, if I run in loop :

    while true; do wc -l teste.mp3; sleep 0.5; done;

    test.mp3 file keeps 0 rows, until has 256k size...

    I have no idea how to workaround that, to get the real time file size for each 1k that ffmpeg get from stream with those codecs, does you guys have any idea how can I handle that ?

    Thanks !!!!

  • fate : Add basic license header check

    27 septembre 2015, par Michael Niedermayer
    fate : Add basic license header check
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] tests/Makefile
    • [DH] tests/fate-run.sh
    • [DH] tests/fate/source-check.sh
    • [DH] tests/fate/source.mak
    • [DH] tests/ref/fate/source
  • avformat/movenc : don't use mono layout when a front center label is expected

    28 mars 2022, par James Almer
    avformat/movenc : don't use mono layout when a front center label is expected
    

    On output streams where a multichannel stream needs to be stored as one track
    per channel, each track will have a channel layout describing the position of
    the channel they contain. For the track with front center, the mov muxer was
    using the mov layout "mono" instead of the label for the front center position.

    Since our channel layout API considers front center == mono, we need to do some
    heuristics. To achieve this, we make sure all audio tracks contain streams with
    a single channel, and only one of them is front center. In that case, we write
    the front center label instead of signaling mono layout.

    Fixes the last part of ticket #2865

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/movenc.c
    • [DH] libavformat/movenc.h