Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (46)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

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

Sur d’autres sites (5549)

  • Using FFmpeg concat filter instead of protocol, differrent results [duplicate]

    18 novembre 2015, par f.rodrigues

    This question already has an answer here :

    I have two files that need to be merged.

    I can do this using the ffmpeg concat protocol

    creating a text file and setting the files in there.

    Like so :

    files_to_be_merged.txt

    file '/home/user/Videos/video1.mov'
    file '/home/user/Videos/video2.mov'

    and them using the following command.

    ffmpeg -f concat -i mylist.txt -c copy output.mov

    But I want to do that without having to create a text file.

    I tried this command :

    ffmpeg -i 'concat:video1.mov|video2.mov' -codec copy output.mov

    But the resulting file is just the first video, not both together.

    I get this warning while doing this command ;

    [mov @ 0x35933c0] Codec for stream 0 does not use global headers but
    container format requires global headers

    [mov @ 0x35933c0] Codec for stream 1 does not use global headers but
    container format requires global headers

  • FATE Ends the Mac

    8 juin 2010, par Multimedia Mike — FATE Server

    Did you know Mac OS X can even blue-screen ? To be fair, it doesn’t actually present a blue screen. But when Mac OS X encounters a kernel panic, it looks like this :



    True to form, Mac just has to be prettier and glossier than other operating systems, even in the area of system crashes.

    The reason I bring this up is that the FATE system is bringing down my Mac. My Mac Mini is reliably dying every single time I try to execute my FATE client Python script. Maybe the weather is getting too warm.

    Update, 2010-6-8 : Following advice in the comments, I tried to run Memtest86 on the Mac Mini in question. I couldn’t get the machine to boot the CD I made. As an alternative, I turned the machine off and let it rest for a night. In the morning, I turned it on and ran the FATE client script. It’s working for now.

  • Converting mkv to h264 FFmpeg

    14 janvier 2021, par Rikus Honey

    EDIT :
This question has become very popular and is one of the top results for searching "convert mkv to h264 ffmpeg" and thus I feel it is appropriate to add that for anyone stumbling upon this question to rather use

    


    ffmpeg -i input.mkv -c:v libx264 -c:a aac output.mp4


    


    as libvo_aacenc has been removed in recent versions of FFmpeg and it now has a native aac encoder. For more information visit the FFmpeg wiki page for encoding AAC.

    


    Here is the original question :

    


    I would like to convert my .mkv files to .mp4 using FFmpeg. I have tried the following code :

    


    ffmpeg -i input.mkv -c:v libx264 -c:a libvo_aacenc output.mp4


    


    But I get the error :

    


    


    Error while opening encoder for output stream #0:1 - maybe incorrect parameters such as bit_rate, rate, width or height.

    


    


    Is there any way to get around this ? I have tried setting the bitrate of the audio but the problem seems to persist.