Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (66)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (8148)

  • How to split video to 3 parts by ffmpeg ?

    14 avril 2014, par user3524742

    I want to split video to 3 parts in batch mode. So, I have this code :

    @echo off
    for %%i in ("*.mp4") do ffmpeg -i "%%i" -vcodec copy -acodec copy -ss 00:00:00 -t 00:00:05 D:\Ebook\%%~nxi_1.mp4
    for %%i in ("*.mp4") do ffmpeg -i "%%i" -vcodec copy -acodec copy -ss 00:00:05 -t 00:00:10 D:\Ebook\%%~nxi_2.mp4
    for %%i in ("*.mp4") do ffmpeg -i "%%i" -vcodec copy -acodec copy -ss 00:00:10 D:\Ebook\%%~nxi_3.mp4
    pause

    It works but having some problem :
    1. It save file : .mp4_1.mp4. How to remove ".mp4" ?
    2. When filename of video contain space character. It shows error : "Invalid argument". How to fix it ?

    Thank you very much !

  • Split video with ffmpeg with specific conditions

    15 juin 2023, par Mahdi

    I have some videos and I want to split them into 15 min each with FFmpeg with the following conditions :

    &#xA;

      &#xA;
    1. Final videos should be less than 15 min
    2. &#xA;

    3. Script should cut the video somewhere that speaker is not talking. For example, script should cut video on the following point :
    4. &#xA;

    &#xA;

    enter image description here

    &#xA;

    And it should not cut videos like the following :&#xA;enter image description here

    &#xA;

    This article could working for the first condition, but the second option is missed.

    &#xA;

    python ffmpeg-split.py -f big_video_file.mp4 -s 10&#xA;

    &#xA;

  • Is there an elegant way to split a file by chapter using ffmpeg ?

    18 janvier, par Kattern

    In this page, Albert Armea share a code to split videos by chapter using ffmpeg. The code is straight forward, but not quite good-looking.

    &#xA;

    ffmpeg -i "$SOURCE.$EXT" 2>&amp;1 |&#xA;grep Chapter |&#xA;sed -E "s/ *Chapter #([0-9]&#x2B;\.[0-9]&#x2B;): start ([0-9]&#x2B;\.[0-9]&#x2B;), end ([0-9]&#x2B;\.[0-9]&#x2B;)/-i \"$SOURCE.$EXT\" -vcodec copy -acodec copy -ss \2 -to \3 \"$SOURCE-\1.$EXT\"/" |&#xA;xargs -n 11 ffmpeg&#xA;

    &#xA;

    Is there an elegant way to do this job ?

    &#xA;