Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (61)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

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