Recherche avancée

Médias (1)

Mot : - Tags -/punk

Autres articles (81)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (11595)

  • merge multiple videos to a single .mp4 files using fluent-ffmpeg

    4 juillet 2018, par Kumar Kisalay

    Version information

    fluent-ffmpeg version: 2.1.2
    ffmpeg version:4
    OS:linux mint

    Code to reproduce

    var fluent_ffmpeg = require("fluent-ffmpeg");

    var mergedVideo = fluent_ffmpeg();

    mergedVideo
     .mergeAdd('./Video1.mp4')
     .mergeAdd('./Video2.mp4')
     // .inputOptions(['-loglevel error','-hwaccel vdpau'])
     // .outputOptions('-c:v h264_nvenc')
     .on('error', function(err) {
         console.log('Error ' + err.message);
     })
     .on('end', function() {
         console.log('Finished!');
     })
     .mergeToFile('./mergedVideo8.mp4', '/tmp');

    When I run this code, then I get conversion failed error.

    Observed results

    Error ffmpeg exited with code 1: Error reinitializing filters!
    Failed to inject frame into filter network: Invalid argument
    Error while processing the decoded data for stream #3:0
    Conversion failed!

    I have tried the same conversion using the command line :

    ffmpeg -f concat -i textfile -c copy -fflags +genpts merged8.mp4

    Where textfile has the following content-

    file 'Video1.mp4'
    file 'Video2.mp4'

    And I was able to concatenate the video file. But I want to get the same result using fluent-ffmpeg.

  • fluent-ffmpeg merging files not working - error reinitializing filters

    20 février 2021, par codingmaster398

    Version information

    


      

    • fluent-ffmpeg version : latest
    • 


    • ffmpeg version : latest, installed today
    • 


    • OS : windows 10
    • 


    


    Code to reproduce

    


    console.log("Starting to merge...")
a = new ffmpeg(files[0])
  files.forEach(file => {
    if(file !== files[0]){
      a.input(file)
    } 
  })

  a.on('error', function(err) {
      console.log('An error occurred: ' + err.message);
  })
  a.on('end', function() {
    console.log('Merging finished !');
  })
  a.mergeToFile(out);


    


    (note : if the problem only happens with some inputs, include a link to such an input file)
nah mate

    


    Expected results

    


    For the files in the "files" array to be put into out.avi

    


    Observed results

    


    Starting to merge...
An error occurred: ffmpeg exited with code 1: Error reinitializing filters!
Failed to inject frame into filter network: Invalid argument
Error while processing the decoded data for stream #7:0
Conversion failed!


    


    Note

    


    All of the files are different sizes and lengths.
They are all .avi because my kernel dies when i do mp4

    


  • It’s Piwik Analytics Survey time : Your Opinion Matters !

    10 juillet 2014, par Piwik Core Team — Community

    It’s been almost two years since our last survey. We were so happy to get the participation we did from the community last time and hope that you will once again share your thoughts !

    Piwik Survey

    Fill in the survey

    Looking back on the previous survey, several features were implemented as a direct result :

    • New app design with Morpheus theme
    • Piwik Marketplace for Plugins
    • Visitor Profile
    • Performance and Reliability Improvements
    • Theming
    • Migrated from SVN to Github !
    • And much more…

    Now it is time to ask for your opinion again. Sure it’s only 20 short questions, but your time you take and energy you place in this endeavour will shape Piwik development and features for the near future. We really look forward to your ideas, your opinions and your suggestions. To get started click the box (or link) below :

    Piwik Survey

    Fill in the survey !

    By the way, if you haven’t already make sure you sign up for our newsletter to make sure you get the latest Piwik news and information to your inbox ! You can subscribe here.