Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (89)

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • FFmpeg - Cannot convert MP4 to Webm in windows [closed]

    16 février 2021, par QI JIN

    I need convert MP4 to webm with ffmpeg. So, i use :

    


    ffmpeg -i D:\vedio_tool\files\111\Test_091118_1080p.mp4 -vf scale=640x360 -b:v 360k -minrate 180k -maxrate 540k -bufsize 540k  -tile-columns 2 -g 25.0 -quality good -crf 32 -vcodec libvpx-vp9 -acodec libvorbis -threads 2 -pass 1 -f mp4 -y NUL &&  ffmpeg -i D:\vedio_tool\files\111\Test_091118_1080p.mp4 -vf scale=640x360 -b:v 360k -minrate 180k -maxrate 540k -bufsize 540k  -tile-columns 2 -g 25.0 -quality good -crf 32 -vcodec libvpx-vp9 -acodec libvorbis -threads 2 -pass 2 -y D:\vedio_tool\work\tmp\Test_091118_1080p_640x360.webm


    


    But the conversion fails。

    


  • Dynamic video creation using multiple images

    22 février 2014, par user996048

    I want to create a user video which should take a photo album as input and play exactly like Facbook Look back video.

    I have looked at couple of option including imagemagick and ffmpeg. Are there any good alternatives available for doing this.

  • How to create a JPEG 2000 sequence with alpha channel with FFmpeg

    7 avril 2021, par florit

    How can I create a JPEG 2000 sequence preserving the alpha of an input video with FFmpeg ?

    


    ffmpeg -i /path/to/movie_with_alpha.mov -c:v jpeg2000 -pix_fmt rgba /output/path/sequence_%04d.jp2


    


    … throws this info :

    


    Incompatible pixel format 'rgba' for codec 'jpeg2000', auto-selecting format 'rgb24'


    


    I tried other options for -pix_fmt with no luck.