Recherche avancée

Médias (91)

Autres articles (73)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (11869)

  • How to use ffmpeg in anaconda Jupyter Notebook [closed]

    12 avril 2020, par joshus

    For hours I have been trying to use ffmpeg in Jupyter notebook in anaconda. I literally have no clue what I am doing as I am quite a noob. Any help would be much appreciated.

    



    I found this website but I dont know how to use it https://anaconda.org/conda-forge/ffmpeg

    


  • Batch trim last 2 seconds in all clips | ffmpeg [on hold]

    21 juin 2018, par Bocki Zong

    Trimming last 2 seconds is easy in batch

    for %%a in ("*.*") do ffmpeg -ss 2 -i "%%a" -vcodec copy -acodec copy "newfiles\%%a"

    But how to trim last 2 seconds of every clip from the end using ffmpeg without reencoding ?

    I need bat script for that, tried something on my own and search for it for hours and nothing.

    And clips have a variable duration.

    Or maybe some another app/program ?

  • Timelapse (1/6 fps) from slo-mo (240 fps) with ffmpeg

    4 avril 2022, par baskak

    I recorded slo-mo video on an iPhone SE (2) by mistake instead of timelapse.

    


    I know there's a lot of answers to this question here, but I'm trying again and again and always something's wrong (like a video that has a correct total no. of frames, but lasts 3 hours and is basically a freeze :D )
My recent command was

    


    


    ffmpeg -i IMG_2174.MOV -vf framestep=1440,setpts=N/120/TB -c:v libx264
-preset slow -crf 22 -an -r 30 IMG_2174.timelapse.MOV

    


    


    but it resulted in a one-second-long video, so way over-timelapsed. Should be several seconds IINM. The source video is 30 minutes long @240fps, 17GB.
Thx.