Recherche avancée

Médias (91)

Autres articles (72)

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

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (11134)

  • avformat/mxf : add platform local tag

    2 février 2021, par Limin Wang
    avformat/mxf : add platform local tag
    

    Please check the string of platform with below command :
    ./ffmpeg -i ../fate-suite/mxf/Sony-00001.mxf -c:v copy -c:a copy out.mxf
    ./ffmpeg -i out.mxf
    ....
    application_platform : Lavf (linux)

    Reviewed-by : Tomas Härdin <tjoppen@acc.umu.se>
    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] configure
    • [DH] libavformat/mxfenc.c
    • [DH] tests/ref/fate/copy-trac4914
    • [DH] tests/ref/fate/mxf-d10-user-comments
    • [DH] tests/ref/fate/mxf-opatom-user-comments
    • [DH] tests/ref/fate/mxf-reel_name
    • [DH] tests/ref/fate/mxf-user-comments
    • [DH] tests/ref/fate/time_base
    • [DH] tests/ref/lavf/mxf
    • [DH] tests/ref/lavf/mxf_d10
    • [DH] tests/ref/lavf/mxf_dv25
    • [DH] tests/ref/lavf/mxf_dvcpro50
    • [DH] tests/ref/lavf/mxf_opatom
    • [DH] tests/ref/lavf/mxf_opatom_audio
  • m3u8 hls stream to wav in one step with ffmpeg

    17 février 2021, par Marinos K

    I'm using to ffmpeg to extract 10" snippets in WAV audio from a m3u8 hls stream in two steps like this :

    &#xA;

    ffmpeg -i XXXX.m3u8 -t 10 -c copy -bsf:a aac_adtstoasc -vn output.acc&#xA;ffmpeg -i output.acc output.wav&#xA;

    &#xA;

    How can I do it in just one step to avoid the intermediate file and maybe speed the process ?

    &#xA;

    I tried directly encoding the output with something like -c:a pcm_s24le, but this fails with a 'codec not supported by bitstream filter' error.

    &#xA;

    I also tried piping the output of the first command to the next like this :

    &#xA;

    ffmpeg -i XXX.m3u8 -t 10 -c copy -bsf:a aac_adtstoasc -vn pipe: | ffmpeg  -i pipe: output.wav&#xA;

    &#xA;

    and I get an 'pipe: : Invalid data found when processing input' error.

    &#xA;

    any indications of what am I doing wrong, or any other ideas ?

    &#xA;

  • Merge Audio and Video on Uno Platform

    27 mars 2021, par trungnt2910

    I am trying to merge an audio stream and a video stream into a single file, on the Uno Platform, particularly for WebAssembly.
    &#xA;I already know that the normal, desktop-only way is by calling ffmpeg, and I also found a C# only way for UWP here.
    &#xA;However, the code used Windows.Media.Editing which is not implemented in Uno.
    &#xA;I know there is a ffmpeg library port for WASM here, but I don't know how to call it from my Uno web application.

    &#xA;

    So are there any ways to merge an audio stream and a video stream to a single file, on the Uno platform for WASM ?

    &#xA;