Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (80)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (6398)

  • Implications of `DPB size > level limit` ?

    4 juillet 2022, par jippyjoe4

    I'm using ffmpeg and the libx264rgb codec to encode 5760x3240 PNG sequences into lossless .mp4 files. When I do this, I get the warning in yellow text :

    


    DPB size (16 frames, 1169280 mbs) > level limit (9 frames, 696320 mbs)

    


    I'm not completely sure what it means. Although it is slow, the encoder does finish encoding the files into a .mp4 file, from which I can extract the frames again losslessly.

    


    What does this warning mean, and what is the implication ?

    


  • AWS Lambda Layer FFMPEG in Express API not working

    11 octobre 2020, par WorkoutBuddy

    This is the code I have in my lambda function :

    


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

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


    const youTubeStream = await youTube.getStream(url);


    console.log('before convertig')
    const result = spawnSync("/opt/bin/ffmpeg", ['-i', youTubeStream,'-vn', '-ar', '44100', '-ac','2','-b:a','192k', '/tmp/file.mp3'], { stdio: 'inherit' })
    console.log(result)
    const output = result['output']
    console.log(output.toString())
    console.log('after converting')
    const stream = await fs.createReadStream('/tmp/file.mp3')
    stream.pipe(res)
}


    



    


    This is the output in Cloudwatch :

    


    INFO ,,ffmpeg version 4.1.3-static https://johnvansickle.com/ffmpeg/ Copyright (c) 2000-2019 the FFmpeg developers
built with gcc 6.3.0 (Debian 6.3.0-18+deb9u1) 20170516
configuration : —enable-gpl —enable-version3 —enable-static —disable-debug —disable-ffplay —disable-indev=sndio —disable-outdev=sndio —cc=gcc-6 —enable-fontconfig —enable-frei0r —enable-gnutls —enable-gmp —enable-gray —enable-libaom —enable-libfribidi —enable-libass —enable-libvmaf —enable-libfreetype —enable-libmp3lame —enable-libopencore-amrnb —enable-libopencore-amrwb —enable-libopenjpeg —enable-librubberband —enable-libsoxr —enable-libspeex —enable-libvorbis —enable-libopus —enable-libtheora —enable-libvidstab —enable-libvo-amrwbenc —enable-libvpx —enable-libwebp —enable-libx264 —enable-libx265 —enable-libxml2 —enable-libxvid —enable-libzvbi —enable-libzimg
libavutil 56. 22.100 / 56. 22.100
libavcodec 58. 35.100 / 58. 35.100
libavformat 58. 20.100 / 58. 20.100
libavdevice 58. 5.100 / 58. 5.100
libavfilter 7. 40.101 / 7. 40.101
libswscale 5. 3.100 / 5. 3.100
libswresample 3. 3.100 / 3. 3.100
libpostproc 55. 3.100 / 55. 3.100
[object Object] : No such file or directory // NO IDEA WHERE THIS COMES FROM

    



    

  • Gettting silence level to be used with silencedetect automatically

    3 mai 2017, par P. Dee

    My goal is to find the average or maximum silent level in dB to use it with silencedetect. I found volumedetect and I thought to use the histogram_ results to find the lowest dB numbers(low as in -40dB, -50dB etc.) with a high number of occurrences.

    What is a better idea ? Can it be combined with the silencedetect command, so I don’t need to enter the dB-Value at all ?