Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (12)

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

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

Sur d’autres sites (4337)

  • FFMPEG install on Amazon Cloud9 IDE

    27 mai 2021, par Scott Tallarida

    I am attempting to install FFMPEG on my cloud9 instance. Everything seems to be going peachy until I receive the following :

    


    configure: checking for guile 3.0
configure: found guile 3.0
checking for guile-3.0... no
checking for guile3.0... no
checking for guile-3... no
checking for guile3... no
checking for guile... /home/ubuntu/.linuxbrew/opt/guile@2/bin/guile
configure: error: found development files for Guile 3.0, but 
/home/ubuntu/.linuxbrew/opt/guile@2/bin/guile has effective version 2.2


    


    I am SUPER ubuntu newb but it seems there is some baked-in version conflict that is stopping this process ?

    


  • I have installed ffmpeg on amazon linux 2. How do I add it to the path permanently ?

    17 mai 2021, par suyogx

    I have installed ffmpeg on amazon linux 2. But my application can't seem to find ffmpeg or ffprobe. How do I add these to the path permanently ? I tried doing it, but every time i logout of ssh, the value is erased from the path.

    


  • Save screenshots taken with FFmpeg into Amazon S3 bucket

    30 mars 2021, par HomeAlone

    In my python app I take screenshots of videos. I save them locally and it works just fine but now I want to save them in an Amazon S3 bucket.

    


    subprocess.run(["ffmpeg", "-ss", "00:00:30", "-i", src, "-map", "0:v", "-vframes", "1", "pipe:pic.jpeg | aws s3 cp - s3://mypublicbucket"])


    


    I get an Unable to find a suitable output format when running this command. What I try to do is to upload the picture straight into my public amazon bucket.