Recherche avancée

Médias (0)

Mot : - Tags -/diogene

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (66)

  • Les sons

    15 mai 2013, par
  • 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) (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (2844)

  • node ffmpeg module stuck more than one file

    29 mai 2021, par Muhammad Hamza

    when I read more than one file it will be stuck and also hang my pc. I need to restart my pc

    


    on one file or 5 files it will work perfectly but not more than 5 files

    


    if anyone know this issue let me know

    


    const ffmpegPath = require('@ffmpeg-installer/ffmpeg').path
const ffmpeg = require('fluent-ffmpeg')
ffmpeg.setFfmpegPath(ffmpegPath)


const testFolder = './videos/';
const fs = require('fs');

 


fs.readdir(testFolder, async(err, files) => {
  try {
    for(let i = 0; i < 10; i++){
      if(files[i] != '1 Surah Fatiha Dr Israr Ahmed Urdu - 81of81.mp4'){
        
        let converter = await ffmpeg(`./videos/${files[i]}`)
        await converter.setStartTime('00:00:00').setDuration('30').output(`./outputfolder/${files[i]}`).on('end', function(err) {
        if(err) { 
          console.log(`err durinng conversation \n ${err}`) 
        }
        else{
          console.log(`Done ${files[i]}`);
        }
        }).on('error', function(err){
          console.log(`error: ${files[i]}`, err)
        }).run()
      }
    }
  } catch (error) {
    console.log(error)
  }
});



    


  • [linux][ffmpeg] process hangs at the end if sigtstp was used

    23 mars 2017, par Bio Hazard

    I’m trying to manage a list of ffmpeg processes running on a centos server. If the stop signal was applied to a process then continued, the process hangs right in the end of the transcoding process.

    ffmpeg -y -i input.mkv -c:v libx264 -preset veryslow -vf scale=1280:-2 -ac 2 -crf 23 -b:a 160k -sn -map v:0 -map a:0 -af volume=5.125dB output.mp4
    kill -19 "pid"
    kill -CONT "pid"

    the job list shows the following :

    [1]+  Stopped                 ffmpeg -y -i input.mkv -c:v libx264 -preset veryslow -vf scale=1280:-2 -ac 2 -crf 23 -b:a 160k -sn -map v:0 -map a:0 -af volume=5.125dB output.mp4

    The process finished successfully when I used the command

    fg

    I want to allow the process to finish normally without the need to the later command.

    NOTE : the process doesn’t hang if I don’t use the stop signal.

  • libvpx : Enable vp9 alpha encoding

    1er juillet 2016, par Vignesh Venkatasubramanian
    libvpx : Enable vp9 alpha encoding
    

    Chrome canary now supports decoding of VP9 streams with alpha
    channel [1]. Add support to ffmpeg for creating such files.

    [1] https://codereview.chromium.org/2096813002/

    Reviewed-by : James Zern <jzern@google.com>
    Signed-off-by : Vignesh Venkatasubramanian <vigneshv@google.com>

    • [DH] libavcodec/libvpx.c
    • [DH] libavcodec/libvpxenc.c