Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (96)

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

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

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

Sur d’autres sites (10206)

  • avformat/matroskadec : Check parents remaining length

    13 février 2019, par Steve Lhomme
    avformat/matroskadec : Check parents remaining length
    

    This was found through the Hacker One program on VLC but is not a security issue in libavformat
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/matroskadec.c
  • dockerfile apt-get install ffmpeg unmet dependencies

    8 juillet 2020, par Martin

    I have a Dockerfile which looks like this :

    &#xA;

    FROM node:carbon&#xA;VOLUME ["/root"]&#xA;ADD setup-ffmpeg.sh /root&#xA;RUN /root/setup-ffmpeg.sh&#xA;# Create app directory&#xA;WORKDIR /usr/src/app&#xA;# Install app dependencies&#xA;# A wildcard is used to ensure both package.json AND package-lock.json are copied&#xA;# where available (npm@5&#x2B;)&#xA;COPY package*.json ./&#xA;RUN npm install&#xA;# If you are building your code for production&#xA;# RUN npm install --only=production&#xA;# Bundle app source&#xA;COPY . .&#xA;EXPOSE 8080&#xA;CMD [ "npm", "start" ]&#xA;

    &#xA;

    Which tries to run the file setup-ffmpeg.sh :

    &#xA;

    #!/usr/bin/env bash&#xA;echo &#x27;deb http://www.deb-multimedia.org jessie main non-free&#x27; >> /etc/apt/sources.list&#xA;echo &#x27;deb-src http://www.deb-multimedia.org jessie main non-free&#x27; >> /etc/apt/sources.list&#xA;apt-get update&#xA;apt-get install -y --force-yes deb-multimedia-keyring&#xA;apt-get remove -y --force-yes ffmpeg&#xA;apt-get install -y --force-yes build-essential libmp3lame-dev libvorbis-dev libtheora-dev     libspeex-dev yasm pkg-config libfaac-dev libx264-dev libav-tools &#xA;echo "ffmpeg time"&#xA;apt-get install ffmpeg &#xA;

    &#xA;

    I am on Ubuntu 20.04 LTS, and try to run this the Dockerfile, from terminal, with the command :

    &#xA;

    docker build -t alien35/node-web-app .&#xA;

    &#xA;

    This causes an error when reaching the ffmpeg part though :

    &#xA;

    Sending build context to Docker daemon  9.793MB&#xA;Step 1/10 : FROM node:carbon&#xA; ---> 8eeadf3757f4&#xA;Step 2/10 : VOLUME ["/root"]&#xA; ---> Using cache&#xA; ---> 3658672462de&#xA;Step 3/10 : ADD setup-ffmpeg.sh /root&#xA; ---> c9c192aa97c5&#xA;Step 4/10 : RUN /root/setup-ffmpeg.sh&#xA; ---> Running in b9240ac8d351&#xA;Ign:1 http://deb.debian.org/debian stretch InRelease&#xA;Get:2 http://security.debian.org/debian-security stretch/updates InRelease [53.0 kB]&#xA;Get:3 http://deb.debian.org/debian stretch-updates InRelease [93.6 kB]&#xA;Get:4 http://deb.debian.org/debian stretch Release [118 kB]&#xA;Get:5 http://deb.debian.org/debian stretch Release.gpg [2410 B]&#xA;Get:6 http://security.debian.org/debian-security stretch/updates/main amd64 Packages [529 kB]&#xA;Get:7 http://deb.debian.org/debian stretch-updates/main amd64 Packages [28.2 kB]&#xA;Get:8 http://deb.debian.org/debian stretch/main amd64 Packages [7083 kB]&#xA;Get:9 http://www.deb-multimedia.org jessie InRelease [24.6 kB]&#xA;Ign:9 http://www.deb-multimedia.org jessie InRelease&#xA;Get:10 http://www.deb-multimedia.org jessie/main Sources [60.8 kB]&#xA;Get:11 http://www.deb-multimedia.org jessie/non-free Sources [2480 B]&#xA;Get:12 http://www.deb-multimedia.org jessie/main amd64 Packages [82.8 kB]&#xA;Get:13 http://www.deb-multimedia.org jessie/non-free amd64 Packages [1776 B]&#xA;Fetched 8080 kB in 2s (3402 kB/s)&#xA;Reading package lists...&#xA;W: GPG error: http://www.deb-multimedia.org jessie InRelease: The following signatures couldn&#x27;t be verified because the public key is not available: NO_PUBKEY 5C808C2B65558117&#xA;W: The repository &#x27;http://www.deb-multimedia.org jessie InRelease&#x27; is not signed.&#xA;Reading package lists...&#xA;Building dependency tree...&#xA;Reading state information...&#xA;The following NEW packages will be installed:&#xA;  deb-multimedia-keyring&#xA;0 upgraded, 1 newly installed, 0 to remove and 56 not upgraded.&#xA;Need to get 10.7 kB of archives.&#xA;After this operation, 25.6 kB of additional disk space will be used.&#xA;WARNING: The following packages cannot be authenticated!&#xA;  deb-multimedia-keyring&#xA;Get:1 http://www.deb-multimedia.org jessie/main amd64 deb-multimedia-keyring all 2016.8.1 [10.7 kB]&#xA;debconf: delaying package configuration, since apt-utils is not installed&#xA;Fetched 10.7 kB in 0s (23.3 kB/s)&#xA;Selecting previously unselected package deb-multimedia-keyring.&#xA;(Reading database ... 29962 files and directories currently installed.)&#xA;Preparing to unpack .../deb-multimedia-keyring_2016.8.1_all.deb ...&#xA;Unpacking deb-multimedia-keyring (2016.8.1) ...&#xA;Setting up deb-multimedia-keyring (2016.8.1) ...&#xA;W: --force-yes is deprecated, use one of the options starting with --allow instead.&#xA;W: --force-yes is deprecated, use one of the options starting with --allow instead.&#xA;Reading package lists...&#xA;Building dependency tree...&#xA;Reading state information...&#xA;Package &#x27;ffmpeg&#x27; is not installed, so not removed&#xA;0 upgraded, 0 newly installed, 0 to remove and 56 not upgraded.&#xA;Reading package lists...&#xA;Building dependency tree...&#xA;Reading state information...&#xA;pkg-config is already the newest version (0.29-4&#x2B;b1).&#xA;pkg-config set to manually installed.&#xA;Some packages could not be installed. This may mean that you have&#xA;requested an impossible situation or if you are using the unstable&#xA;distribution that some required packages have not yet been created&#xA;or been moved out of Incoming.&#xA;The following information may help to resolve the situation:&#xA;&#xA;The following packages have unmet dependencies:&#xA; libav-tools : Depends: ffmpeg (= 10:2.6.9-dmo1&#x2B;deb8u2) but it is not going to be installed&#xA;E: Unable to correct problems, you have held broken packages.&#xA;ffmpeg time&#xA;Reading package lists...&#xA;Building dependency tree...&#xA;Reading state information...&#xA;Some packages could not be installed. This may mean that you have&#xA;requested an impossible situation or if you are using the unstable&#xA;distribution that some required packages have not yet been created&#xA;or been moved out of Incoming.&#xA;The following information may help to resolve the situation:&#xA;&#xA;The following packages have unmet dependencies:&#xA; ffmpeg : Depends: libavcodec56 (>= 10:2.6.9) but it is not going to be installed&#xA;          Depends: libavdevice56 (>= 10:2.6.9) but it is not going to be installed&#xA;          Depends: libavfilter5 (>= 10:2.6.9) but it is not going to be installed&#xA;          Depends: libavformat56 (>= 10:2.6.9) but it is not going to be installed&#xA;E: Unable to correct problems, you have held broken packages.&#xA;The command &#x27;/bin/sh -c /root/setup-ffmpeg.sh&#x27; returned a non-zero code: 100&#xA;

    &#xA;

    I have tried adding the dependencies to apt-get install in my Dockerfile, and adding -f to the ffmpeg command as well, but I am still getting this error

    &#xA;

  • avformat/hls : fail on probing non hls/m3u8 file extensions

    3 mai 2023, par Michael Niedermayer
    avformat/hls : fail on probing non hls/m3u8 file extensions
    

    Its unexpected that a .avi or other "standard" file turns into a playlist.
    The goal of this patch is to avoid this unexpected behavior and possible
    privacy or security differences.

    Reviewed-by : Steven Liu <lingjiujianke@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/hls.c