Recherche avancée

Médias (1)

Mot : - Tags -/3GS

Autres articles (65)

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

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

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

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