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)

  • Directory conversion with ffmpeg, filename edit (Windows)

    17 avril 2021, par Aussie iTV

    Being new here, I don't have the reputation to comment directly on the post.

    


    I am trying to use ffmpeg to convert *.mkv files to *.mp4 files in a directory.

    


    The below question had the answer I was looking for, but only one answer related to Windows, but doesn't seem to adjust for the fact that the outputting file will be labelled

    


    `%name%.mkv.mp4`


    


    I've seen elsewhere for single file bat files that you can use

    


    `"!name~0,-4~".mp4`


    


    which removes the 4 characters, but this didn't work in the code provided.

    


    How do I edit the code to remove the .mkv file

    


    `for %i in (*.mp4) do ffmpeg -i "%i" "%~ni.mp3`


    


    Additionally, how is a bat file ran via powershell ? The original answer says shift+left click, this does nothing for me.

    


    Thanks for the help !

    


    Original question post : How do you convert an entire directory with ffmpeg ?

    


  • swscale/tests/swscale : Fix potential buffer overflow

    18 mars, par Andreas Rheinhardt
    swscale/tests/swscale : Fix potential buffer overflow
    

    The field width in a %s directive gives the amount of characters
    to read from the input and not the size of the receiving buffer ;
    the latter must be of course also have space for the trailing \0
    which has been forgotten here. The commit adds it (and fixes a
    - Wfortify-source warning from Clang).

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libswscale/tests/swscale.c
  • avformat/avio : Remove no-op code in url_find_protocol().

    7 juillet 2017, par Wan-Teh Chang
    avformat/avio : Remove no-op code in url_find_protocol().
    

    In url_find_protocol(), proto_str is either "file" or a string
    consisting of only the characters in URL_SCHEME_CHARS, which does not
    include ','. Therefore the strchr(proto_str, ',') call always returns
    NULL.

    Note : The code was added in commit
    6161c41817f6e53abb3021d67ca0f19def682718.

    Signed-off-by : Wan-Teh Chang <wtc@google.com>
    Signed-off-by : Muhammad Faiz <mfcc64@gmail.com>

    • [DH] libavformat/avio.c