Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (21)

  • 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 (4684)

  • 'ffmpeg' or 'handbrake cli' for video conversion on server ? [closed]

    18 juin 2013, par AaronJiang

    I want to convert videos on my server using command line, maily mp4 -> flv or flv -> mp4. I googled and found these two products 'ffmpeg' and 'HandBrake cli'.

    http://ffmpeg.org/ffmpeg.html

    https://trac.handbrake.fr/wiki/CLIGuide

    Which one is better ?

    Plus I am running on ubuntu server.

  • ffmpeg Convert mp4 to m3u8 stream file is very slow

    17 avril 2018, par Zione01

    I use the ffmpeg to convert mp4 video to the m3u8 steam file, which is visible in the following code :

    ffmpeg -i $filename -bsf:v h264_mp4toannexb -strict -2 -flags -global_header -hls_list_size 0 chunk.m3u8"

    But my problem is, I do not know when to turn that converting process on the server ? You suppose the user uploads a file of 60 MB and will have to wait for this 60 MB to be converted to 3m8u during the upload. It takes a lot of time (at least 40 minutes). And the server gives the error 504 Gateway error because the conversion time is too long.

    Do you have a reasonable and correct way of doing this ?
    Did I do that right ? Or should we use a better method to stream ?

  • Fluent FFmpeg Thumbnail Extraction Error : "muxing overhead : unknown, conversion failed"

    21 août 2024, par Abdul Hannan Mahmood

    I'm trying to extract a thumbnail from a video using Fluent FFmpeg, but I'm encountering the error "muxing overhead : unknown, conversion failed." Despite this error, the thumbnail is being generated correctly.

    


    Here's my code :

    


    const screenshotPath = resolve(`${output}/${videoId}_thumbnail.png`);
ffmpeg(inputUrl)
  .screenshots({
    timestamps: [timestamp],
    filename: screenshotPath,
    size: '640x360'
  })
  .output(screenshotPath)
  .on('error', (err) => {
    log.error(`VideoId:${videoId} -> Error while extracting screenshot`, err);
  });


    


    I've already verified the following :

    


      

    • Input file integrity : The input video file is not corrupted.
    • 


    • Supported formats : The video format is compatible with Fluent FFmpeg.
    • 


    • System resources : My system has sufficient resources for the conversion.
    • 


    • Conversion tool : I'm using the latest version of Fluent FFmpeg.
    • 


    


    Despite these checks, the error persists. I'm wondering if this is a known issue or if there's something else I might be missing.