Recherche avancée

Médias (0)

Mot : - Tags -/médias

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

Autres articles (25)

  • 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

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

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (7736)

  • Split videos into segments using ffmpeg

    21 janvier 2019, par RJFF

    I have 10000 videos and I want to split each video into five segments

    I know previously how to segment video using ffmpeg but I do not know how to use it with a large number of videos

    the names of videos are :
    1.avi,
    2.avi,
    3.avi,
    .......
    .....,
    10000.avi

    I want to use for loop with ffmpeg
    can you please help me ?!!!!

  • Ffmpeg Split lost one second

    4 décembre 2012, par Ahmet Ka

    I got a problem with ffmpeg video cutting. Videos not cut properly. 1 second between the first and second video is lost.
    part1.avi split code :

    ffmpeg -i input.avi -ss 00:00:00 -t 00:01:00 -vcodec copy -acodec copy part1.avi

    part2.avi split code

    ffmpeg -i input.avi -ss 00:01:00 -t 00:01:00 -vcodec copy -acodec copy part2.avi

    ffmpeg -i part1.avi = 00:01:00.02
    ffmpeg -i part2.avi = 00:01:00.02

  • Split a wav file into multiple overlapping .wav files using ffmpeg

    5 juillet 2018, par Neeraj Sharma

    I need to split big .wav files into small chunks of the same interval.
    This can be done using this command :

    ffmpeg -i input.wav -f segment -segment_time 59 -c copy parts/out%09d.wav

    but the requirement is some overlap. I am using these chunks for transcription and overlap will help in joining the chunked transcription results. Is there a way to get the overlapped audio chunks ?