Recherche avancée

Médias (91)

Autres articles (39)

  • 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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (6262)

  • ffmpeg - multiline text in metadata (comment tag)

    21 juillet 2024, par Yaroslav

    I use ffmpeg to update metadata tags like this way :

    



    ffmpeg -i "in.m4a" -acodec copy -metadata artist="artist text"
-metadata comment="comment text" "out.m4a"


    



    Well, "artist text" and "comment text" is usual plain text, but comment field allows to put multiline text. Each line must have new line character to do it. Something like this :

    



    -metadata comment="source: lastfm \r\n tags: tag1, tag2 \r\n ..."


    



    But all characters that I use (\r\n, %nl%, ^N) bring no result.

    



    I run ffmpeg.exe from PHP script on Windows using shell_exec() function

    



    Someone help please, or tell me is it really possible ?...

    


  • ffmpeg - multiline text in metadata (comment tag)

    29 juillet 2016, par decss

    I use ffmpeg to update metadata tags like this way :

    ffmpeg -i "in.m4a" -acodec copy -metadata artist="artist text"
    -metadata comment="comment text" "out.m4a"

    Well, "artist text" and "comment text" is usual plain text, but comment field allows to put multiline text. Each line must have new line character to do it. Something like this :

    -metadata comment="source: lastfm \r\n tags: tag1, tag2 \r\n ..."

    But all characters that I use (\r\n, %nl%, ^N) bring no result.

    I run ffmpeg.exe from PHP script on Windows using shell_exec() function

    Someone help please, or tell me is it really possible ?...

  • ffmpeg metadata, multiline text into comment field

    15 avril 2013, par decss

    my question is next : i use ffmpeg to update metadata tags like this way

    ffmpeg -i "in.m4a" -acodec copy -metadata artist="artist text"
    -metadata comment="comment text" "out.m4a"

    Well, "artist text" and "comment text" is usual plain text, but comment field allow to put multiline text. Each line must have new line character to do it. Something like this :

    -metadata comment="source: lastfm \r\n tags: tag1, tag2 \r\n ..."

    But all characters that i use (\r\n, %nl%, ^N) brings no result

    So i have no idea how to put multiline text into a comment field via ffmpeg
    Hope you will help me : ) Thanks !