Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (27)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (4163)

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

  • ffmpeg : how to extract multiple clips from a movie at once

    24 septembre 2019, par Ginso

    Now I can extract a clip from a movie using

    ffmpeg -i movie.mp4 -ss 01:05:10 -t 00:01:30

    now, I want to extract a few clips from one movie and especially those late in the movie take very long. I guess ffmpeg has to decode the whole movie up to that clip. Is there a way to extract all clips with one command, so that ffmpeg has to go through the movie only once ? The clips don’t overlap

  • lavfi/movie : Use filter thread count for decoding threads.

    25 août 2019, par Carl Eugen Hoyos
    lavfi/movie : Use filter thread count for decoding threads.
    

    Fixes ticket #7542.

    • [DH] libavfilter/src_movie.c