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

  • How do I split a video into its separate frames, including audio ? [duplicate]

    24 mai 2019, par TTT

    This question already has an answer here :

    I would like to split a video, such that for every frame I have an object which contains both the frame’s image and audio samples (for example as an array of bytes).

    I’ve found many directions on how to extract just the images, but not how to include the audio.

    How would I split a video up like that, for example using Python ?

  • ffmpeg auto split into exact timeframes

    27 novembre 2022, par Rey Bet

    I've been trying to autosplit a video into smaller clips of same length using ffmpeg. I know the command :

    


    ffmpeg -i "video.mp4" -c copy -map 0 -segment_time 00:00:05 -f segment -reset_timestamps 1 output%03d.mp4)


    


    But this one splits videos into frames so the time is varying.
I found a command

    


    ffmpeg -i "name" -ss 0 -t 5 p1.mp4
ffmpeg -i "name.mp4" -ss 5 -t 5 p2.mp4
ffmpeg -i "name" -ss 10 -t 5 p3.mp4 


    


    But this would mean i would have to do it manually for whole video. Is there way to automate the process so i can split the video into exact time ? Thank you.

    


    I'm using Windows 10 if it makes any difference

    


  • How can i split a video file in C# ?

    19 février 2015, par fthymn

    I’m using c# on vs2012.
    I wanna split to video file for a custom time arrange.
    For Example ; my video file length 30 minutes and i want to watching just selection time arrange. (like between 10th second and 45th second.)

    I dont want to physical new file.

    My steps for what am i doing :)

    1- Select Source Video File.
    2- I must learn source video time length.
    3- I use rangetrackbar control user select time arrange.
    4- User click play then selected time arrange scenes played.

    Is it possible ?