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 (8116)

  • split videos with ffmpeg

    23 novembre 2020, par 5Diraptor

    I'm trying to create a script that scans a directory, and for all videos larger then X size, splits them down into smaller chunks.

    &#xA;

    There are two similar questions :

    &#xA;

    &#xA;

    Neither of these work in the way I want. The first you have to manually input every file that you want to process. The second doesn't check for filesize, or output the files in the way I want.

    &#xA;

    So far, this is the contents of the .bat file :

    &#xA;

    %~d1&#xA;&#xA;for %%a in (*.MOV) do (&#xA;&#xA;if %%~za GTR 2000000000 (&#xA;&#xA;REM usage %%a <filename>&#xA;set "_filename=%~n1"&#xA;set "_tally=.SPLIT-%03d"&#xA;set "_extension=%~x1"&#xA;&#xA;set "_outputname=%_filename%%_tally%%_extension%"&#xA;&#xA;&#xA;    ffmpeg -i "%%a" ^&#xA;        -crf 0 -c copy -map 0 -segment_time 00:00:30 -f segment -reset_timestamps 1 ^&#xA;        %_outputname%&#xA;)&#xA;)&#xA;pause&#xA;</filename>

    &#xA;

    My aim is for the script to work in the following way :

    &#xA;

      &#xA;
    1. Drag a video (from a folder of videos) onto the .bat file.
    2. &#xA;

    3. Script opens up, and targets each file ending .MOV, and is greater then 2GB
    4. &#xA;

    5. ffmpeg splits the video down into >2GB chunks. (I know it's currently split down in 30 second chunks, still working on understanding how to use the -fs parameter).
    6. &#xA;

    7. Each chunk gets saved with the original filename and extension, but the filename is suffixed with ".SPLIT" and then a unique number that relates to which file it is - first file is 000 and second is 001 etc.
    8. &#xA;

    &#xA;

    Problems :

    &#xA;

      &#xA;
    • Firstly, I want to split by filesize and not time, but I don't understand how to use the -fs parameter in this case. I guess I could use something like ffprobe -i input.file -show_format -v quiet | sed -n &#x27;s/duration=//p&#x27; in conjunction with it but I'm not confident...
    • &#xA;

    • Secondly, I'm getting a problem with %03d in the .bat. Think I'm mixing up languages ? It retrieves the filepath of the .bat file instead of counting number of loops.
    • &#xA;

    &#xA;

    Any help really appreciated !

    &#xA;

  • How to split an incoming stream into multiple streams with different resolutions ?

    30 janvier, par Cobalt

    How to split an incoming stream into several streams with different resolutions on the MediaMTX server ? There is one incoming stream in rtsp, it needs to be split into several channels with different resolutions. I think in the direction of ffmpeg, but I don't understand how to register this in the mediamtx settings.

    &#xA;

  • Split video in specific number of frame with ffmpeg in c#

    1er août 2017, par Loic Bch

    I want to split a video into a specific number of image :
    I’m using ffmpeg/EmguCV in C#.

    I capture a video from a webcam and i need to split the video into 59 images. i’m using -i command with ffmpeg to split my video into a number of images.

    The problem is that the number of images i get at the end is different at each capture because the duration of the video is not exactly the same due to fps drop.

    So if anyone know if it’s possible to specify that i want the video to be equally cut into 59 images. (Or any other idea to get what i want)

    (at the moment i’m taking the number of images i get from the cut and divide it by 59 then i’m taking one image in "the result" but i’ts not precise at all because if i get a decimal number im losing or adding images)