Recherche avancée

Médias (91)

Autres articles (82)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

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

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (12879)

  • Anomalie #3429 (Nouveau) : Incohérence du 2è paramètre du critère `{pagination}`

    16 avril 2015, par marcimat ☺☮☯♫

    Hop,

    Je viens de tomber sur un truc curieux, reproductible simplement.
    Lorsqu’on demande debutX=@identifiant à une boucle pagination, cela ne fonctionne que si on a une balise en 1er ou 2è argument du critère pagination :

    - {pagination #VAL{10} X} fonctionne,
    - {pagination 10 #VAL{X}} fonctionne,
    - mais pas {pagination 10 X} ;

    Le nombre 10 est pourtant bien pris en compte dans les 3 situations finalement ; mais pas le ’X’ dans le dernier cas.
    Plus précisément le critère pagination croit lire dans le dernier cas un nombre ’10 X’ qu’il transforme en 10 avec un strval(). Mais il perd l’info X.

    Du coup, la variable créée est debutX dans les premiers cas, et debut_{NOM_BOUCLE} dans le dernier.

    Une solution pourrait être d’accepter (et préférer) l’écriture {paginaiton N, X} ?

  • Convert from webm to gif using FFMPEG with minimal loss in quality

    27 novembre 2017, par Neo Herakles

    so I want to convert all my webm files to gif but the quality degraded incredibly, there’s some barely visible lines along the picture, tried using crf to improve it but it doesn’t, could you help me ? Here’s my code :

    @echo off
    setlocal
    for %%G in ("%~dp0\webm\*.webm") do (
       ffmpeg -i "%%G" -pix_fmt rgb24 -crf 17 "%%G.gif"
       )
    )
    endlocal
    pause

    Also, could you instruct me in a way in which I can remove the .webm from the output filename ? it outputs as "(file name).webm.gif"

  • Decrease size of video in android with minimal loss of quality

    26 mai 2023, par Koushik Roy

    I am recording video using camera intent and getting displaying it in a videiview. Now i want to upload it, But it is very big in size. I want to compress it using FFMPEG as I found the many article and in SO also, but i didn't find any clear article with codes.

    


    Can anyone help me with ffmpeg code ?
Is there any other way to do it in android ?
Thanks in advance.