Recherche avancée

Médias (91)

Autres articles (27)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (3672)

  • ffmpeg - split video into multiple parts with different duration

    16 avril 2023, par Pierrou

    in order to split very old episodes from my VHS rips, I would like to split video files into multiple parts according to timestamps in csv file :

    


    file1;00:01:13.280;00:14:22.800;Part 1
file1;00:14:41.120;00:26:05.400;Part 2
file1;00:26:23.680;00:39:41.720;Part 3
file1;00:40:00.000;00:51:43.280;Part 4
file1;00:53:50.200;01:06:15.680;Part 5
file1;01:06:33.960;01:20:58.400;Part 6
file1;01:21:16.680;01:34:57.320;Part 7
file1;01:35:15.600;01:48:21.640;Part 8
file1;01:49:15.160;01:51:54.720;Part 9
file2;00:01:13.280;00:13:30.960;Part 1
file2;00:13:49.240;00:29:04.240;Part 2
file2;00:29:22.520;00:43:24.080;Part 3
file2;00:43:42.360;00:58:12.560;Part 4
file2;01:00:03.880;01:12:52.840;Part 5
file2;01:13:11.120;01:24:13.280;Part 6
file2;01:24:31.560;01:51:12.720;Part 7
file2;01:52:06.840;01:54:55.640;Part 8


    


    So how can I have multiple lines like those ?

    


    ffmpeg -i file1.avi -c copy -ss 00:01:13.280 -to 00:14:22.800 file1/part1.avi


    


    So I would like to keep each parts in individual files and remove everything else.

    


  • Filter complex with split source and multiple overlays : Can my code be simplified ?

    29 juin 2024, par Patrick Hennessey

    I've created a complex split filter that splits a single 1372 x 1372 input source into multiple uniquely shaped and cropped slices (s1, s2, etc), and overlays them on a padded background plate into a single output. It also applies a 20fps target framerate on the last overlay step.

    


    It works exactly how I want, but I'm wondering if this code is inefficient or redundant in any way :

    


    ffmpeg -i test.mp4 -filter_complex "[0:v]split=5[s1][s2][s3][s4][s5];
[s1]scale=377:377,crop=360:360:2:2,pad=1920:1080:1560:720[bg];
[s2]crop=1372:1068:0:0[s2];[bg][s2]overlay=0:0[bg];
[s3]crop=460:308:0:1064[s3];[bg][s3]overlay=1372:0[bg];
[s4]crop=460:308:456:1064[s4];[bg][s4]overlay=1372:308[bg];
[s5]crop=460:308:912:1064[s5];[bg][s5]overlay=1372:616,fps=20" output.mp4


    


    Is there a more elegant way to achieve the same result ?

    


  • FFMPEG split audio files accurately

    5 mai 2015, par Jakob Hougaard Andersen

    I am trying to use ffmpeg to split uncompressed audio files. I would like to split them very precisely at certain points.
    My experiments so far have led me to this procedure :

    ffmpeg -ss 1.126 -i someInputFile.wav -acodec copy -t 0.634 someOutputFile.wav

    So I am seeking (-ss) to a certain point in the input file and then I am outputting to a file with a defined length (-t).

    The -ss parameter seems to locate the starting point very accurately, but the length of the file doesn’t seem to match my defined length exactly.
    It seems that the file size jumps in steps of 4096 bytes (and the length with it) so that I can not define a file length in between two steps.

    I know that 4096 bytes is not a lot, but for a mono wave file (44.1kHz, 16 bit) it equals a step size of approximately 45 ms. I would really like to be able to define the length as precisely as the starting point.

    So my question is : is it possible to avoid this 4096 byte quatization on the output file length ?

    I have tried to use the ’chomp’ bitstream filter, and it seems to make the length exactly what it should be, but it also causes the output audio file to have strange regions with pure noise...

    Best regards, Jakob