Recherche avancée

Médias (0)

Mot : - Tags -/performance

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (107)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (18885)

  • Revision da6b7a651cc7370f68a35dcaa609bd4b424adf21 : SPIP 1.9.2 : {{{split}}, {{{ereg}}} et {{{rreg_replace}}} sont décrépites ...

    9 janvier 2010, par Committo,Ergo:sum — Log

    SPIP 1.9.2 : split, ereg et rreg_replace sont décrépites en PHP 5.3. git-svn-id : svn ://trac.rezo.net/spip/branches/spip-1.9.2@14849 caf5f3e8-d4fe-0310-bb3e-c32d5e47d55d

  • 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