Recherche avancée

Médias (91)

Autres articles (87)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (11876)

  • Truncate / Trim audio file using start and stop times [duplicate]

    19 juin 2019, par richierich

    I am attempting to truncate a .wav file from any length to 1 minute by using the ffmpeg package. once truncated, I want to save the file in another directory.

    I am able to do so with he following command :

    ffmpeg -i ~/test/audio.wav -ss 00:00:00 -t 00:01:00 -async 1 ~/test/test-minute/*.wav

    But my issue is that I would like to be able to iterate through multiple files within my /test directory and truncate each .wav file, then place the new file in the new /test/test-minute directory.

    Also, I would like to keep the same name for each file when it is created in the new directory. Thus, when a copy of audio.wav is truncated to 1 minute, the new file will also be named audio.wav in the other directory.

    In short, how do I perform the truncate process across the entire directory ?

  • avfilter/vf_colormatrix : add bt.2020 colorspace

    25 mars 2016, par Thomas Mundt
    avfilter/vf_colormatrix : add bt.2020 colorspace
    

    Signed-off-by : Thomas Mundt <loudmax@yahoo.de>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/filters.texi
    • [DH] libavfilter/vf_colormatrix.c
  • DISABLE post processing(ffmpeg) in youtube-dl(2020.01.24)

    1er février 2020, par user3515562

    I want to disbale post process in youtube-dl(2020.01.24).
    My batch file contains

    set /p ytlink=Enter the link of Youtube Video:-    
    youtube-dl -x -o D:\%%(title)s.%%(ext)s %ytlink%  
    pause  

    The youtube-dl first downloads webm file or any other file than use post process ffmpeg.exe to convert it.
    I want to disable post process.Their must be no post process happening after youtube-dl download.

    - x is the option to only download audio file of the YouTube video in webm format .There is no post processing involved.But youtube-dl by default tries to convert the webm file to some other format, which is post processing.Post processing of audio file by default is one that i want to disable
    OS=Windows 10