Recherche avancée

Médias (0)

Mot : - Tags -/utilisateurs

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (65)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

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

  • Changing start number in segment name - ffmpeg mpeg dash encoder

    4 mars 2019, par Trycoder

    I’m trying to implement MPEG dash live streaming using FFmpeg dash encoder and shaka player.

    Is there any way to set the start number to any value other than 1 ?

    For example, chunk-stream0-00009.m4s instead of the default starting segment chunk-stream0-00001.m4s

  • lavf/dashdec : add 3GPP TS26.247 probe in dash demuxer

    19 février 2020, par Jun Zhao
    lavf/dashdec : add 3GPP TS26.247 probe in dash demuxer
    

    Enabled the 3GP-DASH Release-10/Relase-11(3GPP TS26.247) profile
    to dash demuxer probe.

    Signed-off-by : Jun Zhao <barryjzhao@tencent.com>

    • [DH] libavformat/dashdec.c
  • Create dash manifest-file for mp4-videos

    10 juillet 2020, par Werner

    I took a video and created 3 versions of it in different sizes (including a watermark, no audio here) with :

    &#xA;

    ffmpeg -i "input.mov" -i "watermark.png" -an -c:v libx264 -x264opts "keyint=24:min-keyint=24:no-scenecut" -b:v 2400k -maxrate 2400k -bufsize 1200k -filter_complex "overlay=24:960,scale=640:480" -y "output_640_480.mp4"&#xA;&#xA;ffmpeg -i "input.mov" -i "watermark.png" -an -c:v libx264 -x264opts "keyint=24:min-keyint=24:no-scenecut" -b:v 3200k -maxrate 3200k -bufsize 1600k -filter_complex "overlay=24:960,scale=800:600" -y "output_800_600.mp4"&#xA;&#xA;ffmpeg -i "input.mov" -i "watermark.png" -an -c:v libx264 -x264opts "keyint=24:min-keyint=24:no-scenecut" -b:v 5300k -maxrate 5300k -bufsize 5300k -filter_complex "overlay=24:960,scale=1920:1080" -y "output_1920:1080.mp4"&#xA;

    &#xA;

    Now I want to create the manifest mpd file. The problem is that MB4Box is not available on the target-system, so I tried to do it with ffmpeg :

    &#xA;

    ffmpeg&#xA;-f dash -i "output_640_480.mp4"&#xA;-f dash -i "output_800_600.mp4"&#xA;-f dash -i "output_1920_1080.mp4"&#xA;-c copy -map 0 -map 1 -map 2&#xA;-f dash -adaptation_sets "id=0,streams=0,1,2"&#xA;-y&#xA;"manifest.mpd"&#xA;

    &#xA;

    But I get errors :

    &#xA;

    [dash @ 0000015ed965db40] Manifest too large: 6654253&#xA;output_640_480.mp4: Invalid data found when processing input&#xA;

    &#xA;

    The single videos do play without problems, but how do I create the manifest-file correctly ?

    &#xA;