Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (25)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

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

  • Docker build dependent on host Ubuntu version not on the actual Docker File

    26 mars 2021, par user8912375

    I'm facing an issue with my docker build.

    


    I have a dockerfile as follow :

    


    FROM python:3.6


RUN apt-get update && apt-get install -y libav-tools 
....


    


    The issue I'm facing is that I'm getting this error when building on ubuntu:20.04 LTS

    


    E: Package 'libav-tools' has no installation candidate


    


    I made some research and found out that ffmpeg should be a replacement for libav-tools

    


    FROM python:3.6


RUN apt-get update && apt-get install -y ffmpeg 
....


    


    I tried again without any issue.

    


    but when I tried to build the same image with ffmpeg on ubuntu:16.04 xenial I'm getting a message that

    


    E: Package 'ffmpeg' has no installation candidate


    


    after that, I replace the ffmpeg with libav-tools and it worked on ubuntu:16.04

    


    I'm confused now why docker build is dependant on the host ubuntu version that I'm using and not the actual dockerfile.

    


    shouldn't docker build be coherent whatever the ubuntu version I'm using.

    


  • Revision 30149 : On ajoute un champs "extension" dans la table spip_spipmotion_attentes ...

    24 juillet 2009, par kent1@… — Log

    On ajoute un champs "extension" dans la table spip_spipmotion_attentes pour gérer l’encodage multiple
    On nécessite spip-bonux dorénavant

  • FFmpeg can't access file in Dropbox on Ubuntu 12.04

    30 juin 2015, par afterglowlee

    I have installed FFmpeg on Ubuntu 12.04. When I use ffmpeg -i command to check some video file online, it works :

    ffmpeg -i http://techslides.com/demos/sample-videos/small.mp4

    However, when I check a public file hosted in my Dropbox it gives ’No such file or directory error’ :

    ffmpeg -i https://dl.dropboxusercontent.com/u/51617581/bigbuck.webm

    and the error is :

    https://dl.dropboxusercontent.com/u/51617581/bigbuck.webm : No such
    file or directory

    and here is the version info of the ffmpeg installation :

    ffmpeg version 0.8.17-4:0.8.17-0ubuntu0.12.04.1, Copyright (c)
    2000-2014 the Libav developers built on Mar 16 2015 13:26:50 with
    gcc 4.6.3

    I have also tried both files on my Mac 10.10 laptop, and both of them work fine. Could anyone suggest where is the problem ? Many thanks.