Recherche avancée

Médias (91)

Autres articles (68)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (9874)

  • Wav file duration of Windows media player is not same with ffmpeg

    5 août 2020, par jimmy525

    There is one wav file, if using windows media player open it, its duration is 06:15.
But if using ffmpeg convert it to mp3 or using ffprobe check duration, it shows 06:17.
Of course, other players(like vlc) shows 06:17 too.
What I need to do is, using ffmpeg convert it to mp3 with 06:15 duration.

    


    ffmpeg command :

    


    ffmpeg -i 1.wav -f mp3 out.mp3


    


    Please help me to resolve this problem, Thanks

    


  • Revision 4121 : Dans le cas où l’on ne souhaite pas publier à la racine du secteur média ...

    3 octobre 2010, par kent1 — Log

    Dans le cas où l’on ne souhaite pas publier à la racine du secteur média on choisi la première rubrique dans ce secteur pour la génération de l’article Cela ne posait pas de problèmes avant puisque l’on avait le sélecteur de rubrique de base sans la racine Mais si on a polyhiérarchie, cela pose plus de (...)

  • Code to combine multiple media files using ffmpeg

    21 mars 2013, par user2193172

    I am new to ffmpeg

    I am trying to combine multiple media files using ffmpeg, I know the ffmpeg concatenation protocol allows this through a command line arguement. I want to know if the C code for this function is available anywhere, so that I can include the same in my program. If not, I would really appreciate if someone could post any suggestions on how to do this. Basically, I want to combine multiple files without doing the decoding and encoding of files.

    I tried copying the data from one file to another, while I was able to create a new file, i couldn't play it back.

    I searched the ffmpeg library but was unable to locate the code on how the concatenation function works.