Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (37)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (5659)

  • avcodec/hevc_sei : replace en dash character with a hyphen

    6 décembre 2020, par James Almer
    avcodec/hevc_sei : replace en dash character with a hyphen
    

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

    • [DH] libavcodec/hevc_sei.c
  • ffmpeg is not able to parse DASH-IF manifest

    9 décembre 2020, par Abhi Bhalgami

    I tried manifest from local tv channel provider. It's live stream but somehow ffmpeg is not able to parse the manifest.

    &#xA;

    Command :

    &#xA;

    ffmpeg -i "https://delta9tatasky.akamaized.net/out/i/2057298.mpd" -c copy -f mp4 /tmp/out.mp4&#xA;

    &#xA;

    It's encrypted with widevine DRM. But that's not important. ffmpeg is complaining about input data.

    &#xA;

    Error :

    &#xA;

    [dash @ 0x55d605e25100] Unable to read to manifest &#x27;https://delta9tatasky.akamaized.net/out/i/2057298.mpd&#x27;&#xA;https://delta9tatasky.akamaized.net/out/i/2057298.mpd: Invalid data found when processing input&#xA;

    &#xA;

  • FFMPEG || NGINX RTMP server not naming MPEG DASH chunks

    12 avril 2020, par Mathew Knight

    Feel like i'm smashing my head against a brick wall here, i've been tryin to figure thisout for so long....

    &#xA;&#xA;

    Basically i'm trying to send an RTMP stream to my NGINX server running on Ubuntu 18.04, then transcode it to a custom MPEG DASH stream that muxes the stream into 2 streams for audio and video.

    &#xA;&#xA;

    as i need to have the chunks in the same destination folder i need to rename them.

    &#xA;&#xA;

    when i try the following FFMPEG script it just keeps giving me chunks named for example :

    &#xA;&#xA;

    chunk-stream-audio-%05d.webm

    &#xA;&#xA;

    the %05d should be the chunk number running consecutively.

    &#xA;&#xA;

    Running a similar script on my Macbook the chunks generate correctly... is this an error of have i done something wrong here ?

    &#xA;&#xA;

    Here's my FFMPEG script

    &#xA;&#xA;

    exec_push ffmpeg -re -an -i &#x27;rtmp://localhost:1935/live/stream&#x27; -map 0:v:0 -c:v libvpx-vp9 -s 1920x1080 -bufsize 15000k -b:v 15000k -keyint_min 150 -g 150 -tile-columns 4 -frame-parallel 1 -an -f dash -init_seg_name &#x27;init-stream$RepresentationID$_video.webm&#x27; -chunk_start_index 1 -media_seg_name &#x27;chunk-stream$RepresentationID$-video-$Number$.webm&#x27; &#x27;/home/mathewknight/Desktop/test/video.mpd&#x27; -map 0:a:0 -c:a libopus -mapping_family 255 -b:a 1024k -vn -f dash -init_seg_name &#x27;init-stream$RepresentationID$_audio.webm&#x27; -chunk_start_index 1 -media_seg_name &#x27;chunk-stream$RepresentationID$-audio-$Number%05d$.webm&#x27; &#x27;/home/mathewknight/Desktop/test/audio.mpd&#x27;  2>>/var/log/nginx/ffmpeg.log;

    &#xA;