Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

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

Autres articles (102)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • 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 ;

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (10040)

  • 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;