Recherche avancée

Médias (91)

Autres articles (49)

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

  • 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

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

Sur d’autres sites (12664)

  • How to convert a video to different resolution's using ffmpeg

    20 septembre 2018, par Binoy Cherian

    There are some commands i currently use to convert videos but I’m not sure about the quality of the videos converted.

    For low resolution :

    ffmpeg -i input.mp4 -vcodec libx264 -crf 20 output.mp4

    And for high/same resolution (low->high is not feasible, but is there something we can do ?)

    ffmpeg -i input.webm -qscale 0 output.mp4

    I read that qscale preserves the video quality.Since I’m new to ffmpeg. I would like to have some tips. Please let me know if you need any information. Any help would be greatly appreciated.

  • How to convert a video to low and high resolution using ffmpeg

    20 septembre 2018, par Binoy Cherian

    There are some commands i currently use to convert videos but I’m not sure about the quality of the videos converted.

    For low resolution :

    ffmpeg -i input.mp4 -vcodec libx264 -crf 20 output.mp4

    And for high

    ffmpeg -i input.webm -qscale 0 output.mp4

    I read that qscale preserves the video quality. But since I’m new to ffmpeg. I would like to have some tips. Please let me know if you need any information. Any help would be greatly appreciated.

  • Why android ffmpeg takes so long time to resize mp4 video from high resolution ?

    1er septembre 2018, par Kasim Rangwala

    I’m resizing  30 sec long ( 59.98 MB) mp4 video with resolution of 1920 X 1080 to 1280 X 720 using following ffmpeg command in android.

    ["-i", inputVideo!!.path, "-vf", "scale=720:1280", outputVideo.path, "-hide_banner"]

    converted video output is very good ( 6.6MB). but, ffmpeg conversion take so much time. Is there any options available that I can reduce the conversion time ?

    update

    If output format is other than mp4. it is fine but, conversion time must be reduce.

    Thanks.