Recherche avancée

Médias (91)

Autres articles (111)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

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

  • MediaSPIP Init et Diogène : types de publications de MediaSPIP

    11 novembre 2010, par

    À l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
    Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
    Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)

Sur d’autres sites (6245)

  • Cross platform library for converting PCM to mp3 in C# [on hold]

    10 août 2016, par Shlomi Uziel

    Is there a portable method for converting PCM audio to mp3 that will work both on Windows and Linux in a simple way ? I found some FFMPEG wrappers for C#, but none are very user friendly. Also, NAudio and Yeti LAME wrapper seem to work only on Windows

  • SECURITY UPDATE : Fixed cross-site scripting issue in redirect result page.

    9 août 2012, par Sebastian Tschan

    m cors/result.html SECURITY UPDATE : Fixed cross-site scripting issue in redirect result page. Although setting HTML element content via innerHTML ignores script tags, it is possible to run arbitrary script code by using the onerror handler of img tags : result.html ? Setting the body content via (...)

  • How to add a comment into a mp3, in a specific language, using ffmpeg [duplicate]

    20 août 2021, par Valery Letroye

    I am fighting with ffmpeg to add a comment in french into a mp3. I want that comment to be displayed within the tab "Details" of the "Properties" window that I can open from Windows Explorer (which is using French as "Display Language").

    


    Ie. : I want this view :

    


    enter image description here

    


    Unfortunately, I can't find how to do it.

    


    In the illustration above, I did edit the comment directly from the "Details" tag of the "Properties" window. If I look at the Exif info of the file with "exiftool test.mp3", I see

    


    Comment (fra)                   : Test Comment FR


    


    Next, if I open the file test.mp3 with mp3tag (where fra is defined as my language via the Options > Advanced), I see correctly the comment :

    


    enter image description here

    


    Then, if I replace that comment into "Test Comment FR - Edit", within mp3tag, and save it, here is what I get with exiftool :

    


    Comment (fra)                   : Test Comment FR - Edit
Comment                         : Test Comment FR - Edit


    


    mp3tag has updated the Exif info "Comment (fra)" and added the ID3 tag "Comment".

    


    Now, if I try to add the comment with ffmpeg with the following commands (to clean first all metadata of my previous tests) :

    


    ffmpeg -i test.mp3 -map 0 -map_metadata -1 -c copy test-blank.mp3
ffmpeg -y -i test-blank.mp3 -metadata comment="Test Comment FR - ffmpeg" -c copy test.mp3


    


    Here are the Exif info I get :

    


    User Defined Text               : (comment) Test Comment FR - ffmpeg


    


    This info is not displayed in the "Details" tab of the "Properties" window.
Notice that it is however properly displayed by mp3tag.

    


    I did try to specify the language to ffmpeg with -metadata language="fra", or to use the metadata "Comment" or "Comment (fra)" instead of "comment", but nothing helped.

    


    I am totally lost as not an expert in ID3 and ffmpeg... And I didn't find any trick on Google.
NB. : I am using ffmpeg and exiftool in a Shell console on my Synology, to convert mp4 to mp3 (
ffmpeg version 2.7.7 built with gcc 4.9.3).

    


    Is there anyone experienced with ffmpeg who could guide me ?
PS. : I am even not sure that the comment added by ffmpeg would be displayed by a "English" version of Windows...

    


    A big thx in advance !

    


    V.