Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (111)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (14967)

  • avformat/dhav : Do not evaluate avio_size() multiple times

    6 juin, par Michael Niedermayer
    avformat/dhav : Do not evaluate avio_size() multiple times
    

    Code like FFMIN(MAX_DURATION_BUFFER_SIZE, avio_size(s->pb)) is not safe
    as FFMIN() is a macro and avio_size() is thus evaluated multiple
    times

    Reviewed-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/dhav.c
  • Reverse video and loop 2 times ffmpeg

    13 septembre 2019, par Shahal

    I need to reverse the input video and concat it then the loop the output video twice.
    I was able to achieve reversing and concat it with original video using

    ffmpeg -i input.mkv -filter_complex "[0:v]reverse,fifo[r];[0:v][r] concat=n=2:v=1 [v]" -map "[v]" output.mkv

    But i want to stream_loop it 3 times. And also i like to know, if there’s any better ways to do it. The video will be a small one(4 seconds max.) and without audio.

  • Combining multiple pcm files with different starting times

    18 juillet 2021, par BelMat

    How do I combine multiples pcm files, with different starting times and compress it into wav with ffpmeg.js.

    &#xA;

    I know I can :

    &#xA;

    Transform pcm to wav

    &#xA;

    ffmpeg -f s16le -ac 2 -ar 44.1k -i file.pcm file.wav&#xA;

    &#xA;

    Merge files with different starting times :

    &#xA;

    ffmpeg -i 1.mp4 -i 2.mp4 -i 3.mp4 -i 4.mp3&#xA;  -filter_complex "[2]adelay=10000|10000[s2];[3:a][1:a][s2]amix=3[a]"&#xA;  -map 0:v -map "[a]" -c:v copy result.mp4&#xA;

    &#xA;

    but how would I combine all of this inside JS, plus getting the files with FS (Node) and the starting time from the file name ?

    &#xA;

    This is a small snippet where I tried to do all of this :

    &#xA;

    function MakeAudioFile(){&#xA;    const audios = fs.readdirSync(&#x27;./sound/&#x27;).filter(file => file.endsWith(".pcm"));&#xA;    let result = ffmpeg({&#xA;        MEMFS: [],&#xA;        arguments: ["-f", "s16le", "-ac", "2", "--ar", "44.1k"],&#xA;    });&#xA;    audios.forEach(file =>{&#xA;        result.arguments.push(&#x27;-i&#x27;)&#xA;        result.arguments.push(file)&#xA;        result.MEMFS.push(fs.readFileSync(`./sound/${file}.pcm`))&#xA;    })&#xA;}&#xA;

    &#xA;

    But didn't get the expected result and had no idea on how to also add the starting time

    &#xA;