Recherche avancée

Médias (91)

Autres articles (52)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (8877)

  • Split .MOV into frames and edit while preserving audio

    7 août 2015, par Devin

    I have a requirement to take a .mov file from a camera and apply a chroma key filter to it. The app currently handles still images with chroma through NetImageLibrary. I was hoping to use something like ffmpeg to split the .mov into frames, run them through the chroma filter and then reassemble them into the .mov or something similar. I have a feeling this will destroy the audio which I need to preserve. Is there a different way to do this that will keep the audio but allow me to apply the green screen chroma key ?

    Thanks !

  • Use FFmpeg to split a video into 2 equal segments

    3 mai 2023, par Alon G

    I try split a video into 2 equal segments.

    


    I try :

    


    ffmpeg -i input_video.MTS -c copy -map 0 -segment_time 8 -f segment output_video%03d.MTS


    


    but the problem I don't know the length of the video

    


  • Split a video with ffmpeg, without reencoding, at timestamps given in a txt file

    16 février, par Basj

    Let's say we have a video input.mp4, and a file split.csv containing :

    


    start;end;name
00:00:27.132;00:07:42.422;"Part A.mp4"
00:07:48.400;00:17:17.921;"Part B.mp4"


    


    (or I could format the text file in any other format, but the timestamps must be hh:mm:ss.ddd)

    


    How to split the MP4 into different parts with the given start / end timestamps, and the given filename for each part ?

    


    Is it possible directly with ffmpeg, and if not with a Python script ?