Recherche avancée

Médias (91)

Autres articles (103)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

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

Sur d’autres sites (12572)

  • avcodec/x86/v210enc : change '0b' binary constant prefix to 'b' suffix

    3 décembre 2022, par James Darnley
    avcodec/x86/v210enc : change '0b' binary constant prefix to 'b' suffix
    

    For compatability with yasm from 0.7.0

    • [DH] libavcodec/x86/v210enc.asm
  • Revision 483ebc30bc : nestegg : ne_read_(string|binary|block) : normalize size_t usage + nestegg_track_

    4 mars 2014, par James Zern

    Changed Paths :
     Modify /third_party/nestegg/README.webm


     Modify /third_party/nestegg/src/nestegg.c



    nestegg : ne_read_(string|binary|block) : normalize size_t usage

    + nestegg_track_codec_data
    quiets uint64_t -> size_t warnings
    the sizes used are previously validated against their associated LIMIT_*
    values

    Change-Id : Ie574a3a7496d0143bd58b778145c27f38dd6a4da

  • AWS Lambda does not log into CW while using ffmpeg binary

    11 octobre 2020, par WorkoutBuddy

    I have simple endpoint for downloading and converting a youtube video :

    


    app.post('/api/youtube/download', async (req, res) => {
    const body = req.body;
    const { url } = body;

    res.header('Content-disposition', 'attachment; filename=video.mp3');

    await youTube.downloadVideo(url)
    
    // Check folder before
    exec('ls -la /tmp', (error, stdout, stderr) => {
      console.log(`stdout:\n${stdout}`);
    });
    
    console.log('before converting')

    spawnSync("/opt/bin/ffmpeg", ['-i', '/tmp/myVideo.flv','-f', 'mp3', '-ab','192000', '/tmp/file.mp3'], {
        stdio: 'pipe',
        stderr: 'pipe'
    })
    console.log('after converting')
    // Check folder after
    exec('ls -la /tmp', (error, stdout, stderr) => {
      console.log(`stdout:\n${stdout}`);
    });
    
    const stream = fs.createReadStream("/tmp/file.mp3")
    stream.pipe(res)


});


    


    I have no idea why no logs occur to debug :
enter image description here

    


    I have already increas the timeout of the lambda function to 30s
When executing the ffmpeg binary locally it takes less than 5 secons to convert anything.