Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (17)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (3997)

  • FFMPEG mp3 file segmentation on Mac OSx Error . Only one full mp3 file generated as segmented file

    2 novembre 2017, par iThirst

    What I am trying to achieve is to take an MP3 file as source file and generate multiple segments of approx 10s each from it. I am using node’s fluent ffmpeg inside node js application. Below code works absolutely fine and generates proper results on Linux/Ubuntu 16.04 server while fails with below error on mac osx. It ends by generating single .mp3 file and .m3u8 playlist file on mac osx while it generates multiple segmented mp3 files (each 11s) if executed on ubuntu server.

    Error Log:
    [mp3 @ 0x7fc469010c00] Application provided invalid, non monotonically increasing dts to muxer in stream 0: 9223372036854422218 >= -9223372033278215478
    [segment @ 0x7fc469006a00] Packets poorly interleaved, failed to avoid negative timestamp -9223372033277846838 in stream 0.

    // Node js code to execute ffmpeg command is given below

    var command = ffmpeg(fs.createReadStream(directoryPath + fileName), {timeout : 900})
                       .inputFormat('mp3')
                       .inputOptions([                    
                           //'-re',
                           //'-i input.mp3',
                           //directoryPath +'albumart.jpg',
                           '-codec copy',
                           '-map 0',
                           '-f segment',
                           '-segment_list ' + directoryPath + fileName_noExtension + '.m3u8',
                           '-segment_list_flags +live',
                           '-segment_time 10',
                            directoryPath + 'out%03d.mp3'
                       ]);
    command.on('start',{}).on('stderror').on('end').output(directoryPath +  'Out.mp3')
           .run()

    //

    Any help is appreciated in this direction.

  • How to use ffmpeg to add background music to a video and adjust both volumns in one command ? [duplicate]

    21 février 2019, par Chen Yiming

    This question already has an answer here :

    Now I have video.mp4 and music.mp4. I want to add music.mp3 to video.mp4. At the same time, I want to adjust both volumns. For example, make music.mp3 volumn = 0.4 and video.mp4 = 0.2. Is it possible to do this in ffmpeg just use one command ?

  • How to play sound with a music discord bot on heroku

    25 janvier 2020, par Eduardo Espinoza

    I’m creating a Discord Music Bot in discord.js, I already installed ffmpeg, and everything seems to work normally, but when I execute play command, bot joins a channel, send a message, but doesn’t play anything, I’ve already checked console and it doesn’t log anything.
    I know it’s not a problem with code since it works perfectly locally, the problem is when I try to use heroku, I thought it could be a opusscript problem but I don’t know.