Advanced search

Medias (91)

Other articles (13)

  • Le profil des utilisateurs

    12 April 2011, by

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

  • Librairies et logiciels spécifiques aux médias

    10 December 2010, by

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel; FFMpeg avec le maximum de décodeurs et (...)

  • Submit enhancements and plugins

    13 April 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

On other websites (4860)

  • Ffmpeg Split lost one second

    4 December 2012, by 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 July 2018, by 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?

  • FFMPEG split mp3 and add metatag [closed]

    4 May 2023, by Ghile

    I have a 2 hour mp3 that I automatically split with python3 and ffmpeg into many mp3 files. I would also like to add metadata to mp3 files, in order to have title, artist, year and album.

    


    In a csv file I have the cutting times and the name of the mp3 file, but I can't add meta data. The function I use is this:

    


    ffmpeg -loglevel panic -i 1.mp3 -ss 02:29:11 -to 02:34:43 -c copy -metadata 'title=My Title', 'artist=ME', 'date=2023' temp/myfile1.mp3


    


    Not work, It only works if I set the title only. Can you help me, please?
Thank you,