Recherche avancée

Médias (91)

Autres articles (73)

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

  • 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

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

Sur d’autres sites (8897)

  • Revision a7be7c87e0 : intersect_diffs : split out diff classes Seperate parsing functions so they can

    13 juillet 2012, par John Koleszar

    Changed Paths : Add /tools/diff.py (from /tools/intersect-diffs.py :84b1fbfde1166ca7faab2300f7aa54338ce40c57) Modify /tools/intersect-diffs.py intersect_diffs : split out diff classes Seperate parsing functions so they can be reused for other diff utilities Change-Id : (...)

  • How to split a video using FFMPEG so that each chunk starts with a key frame ?

    17 octobre 2015, par sboisse

    We need to split a large live WMV video feed in small chunks all of the same size. We made a script that works fine doing this, except for one thing : the video chunks don’t start with a key frame, so when playing most video chunks they don’t display any image until a key frame from the original video is eventually reached.

    Isn’t there a way to tell ffmpeg to make the output video to start with a key frame ?

    Here is how our command lines look right now :

    ffmpeg.exe -i "C:\test.wmv" -ss 00:00:00 -t 00:00:05 -acodec copy -vcodec copy -async 1 -y  "0000.wmv"
    ffmpeg.exe -i "C:\test.wmv" -ss 00:00:05 -t 00:00:05 -acodec copy -vcodec copy -async 1 -y  "0001.wmv"

    and so on...

  • How to split a video using FFMPEG so that each chunk starts with a key frame ?

    16 novembre 2023, par sboisse

    We need to split a large live WMV video feed in small chunks all of the same size. We made a script that works fine doing this, except for one thing : the video chunks don't start with a key frame, so when playing most video chunks they don't display any image until a key frame from the original video is eventually reached.

    



    Isn't there a way to tell ffmpeg to make the output video to start with a key frame ?

    



    Here is how our command lines look right now :

    



    ffmpeg.exe -i "C:\test.wmv" -ss 00:00:00 -t 00:00:05 -acodec copy -vcodec copy -async 1 -y  "0000.wmv"
ffmpeg.exe -i "C:\test.wmv" -ss 00:00:05 -t 00:00:05 -acodec copy -vcodec copy -async 1 -y  "0001.wmv"


    



    and so on...