Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (13)

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (4581)

  • Use FFmpeg to concat videos(one with audio track, one without audio)

    22 mai 2017, par AnswerZhao

    I concat videos with the following code, one issue troubles me. When the input1.mp4 is with audio track, the result is normal(the original audio is keep),the output.mp4 is with audio ; but when the input1.mp4 is without audio track and the input2.mp4 is with audio, the output.mp4 is without audio. How can i resolve it to keep the original audio track ? Thx.

    ffmpeg -i input1.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts temp1
    ffmpeg -i input2.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts temp2
    ffmpeg -f mpegts -i "concat:temp1|temp2" -c copy -bsf:a aac_adtstoasc output.mp4
  • Use FFmpeg to concat videos(one with audio track, one without audio)

    22 mai 2017, par AnswerZhao

    I concat videos with the following code, one issue troubles me. When the input1.mp4 is with audio track, the result is normal(the original audio is keep),the output.mp4 is with audio ; but when the input1.mp4 is without audio track and the input2.mp4 is with audio, the output.mp4 is without audio. How can i resolve it to keep the original audio track ? Thx.

    ffmpeg -i input1.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts temp1
    ffmpeg -i input2.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts temp2
    ffmpeg -f mpegts -i "concat:temp1|temp2" -c copy -bsf:a aac_adtstoasc output.mp4
  • Creating a timed metadata track in MP4

    16 mai 2017, par galbarm

    The BMFF defines a meta data track as a track which can appear in the media file in addition to video & audio tracks.
    Such a track can be in the form of xml (metx), text (mett) or binary (urim).

    Is there a library which is capable of taking a mp4 file as an input and appending a metadata track to it ?
    Is there a sample mp4 to inspect and learn the exact structure of such a file ?

    Specifically, I’m interested in adding such a track to a fragmented mp4 file.