Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (99)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (10206)

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