Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (25)

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

  • 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 ;

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (5848)

  • Subtitle Encoding using ffmpeg

    12 janvier 2018, par P Akhtar

    I want to read and write subtitle stream

    ffmpeg -i E:/Video/Waka.mp4 -vf subtitles=E:/Video/Waka.srt out.mp4

    equivalent code in c or c++
    and please provide how to add subtitle stream and encoding parameter, what is procedure to read subtitle stream and render at screan

  • imagemagick -auto-level in ffmpeg

    29 août 2024, par Sagi Mann

    I've been looking for a solution to perform the equivalent of magick -auto-level in ffmpeg but am unable to find anything. There are some references stating I should first manually discover the levels using other software like GIMP, however, I'm looking for an automated and simpler solution. Any ideas how to address this ?

    


    I've tried the following - the first enhanced the image which was initially prettry dark, but the second over-exposed it, causing it to become mostly white :

    


    convert img.jpg -auto-level img2.jpg
ffmpeg -i img.jpg -vf "normalize" -y img2.jpg


    


    Note : I apologize I cannot share the image as it is restricted by privacy policy

    


  • How does CMP pass comparison value to the next line in a bash script ?

    22 août 2015, par Tandy Freeman

    I want to compare the output of two framemd5 (decoded md5 of every video frame) digests.
    http://stackoverflow.com/a/12736416/2188572

    The cmp script works perfectly for me.
    I know next to nothing about coding, so I want to educate myself on what’s happening, and I can’t figure out from SO or googling.

    It seems like the script should require more input from me, like I should have to stipulate(apologies for awful pseudo code)

    cmp file1 file 2
    if cmp produces a difference;then
    else

    It seems that just entering "if cmp file1 file 2" automatically produced the equivalent of a YES or NO and stores that info for the then, else etc ?