Recherche avancée

Médias (0)

Mot : - Tags -/gis

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (100)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (10110)

  • How to install ffmpeg for PHP

    1er mai 2021, par Julie Bsd

    I've successfully installed ffmpeg using ssh, as root, on my dedicated server (CentOS 7).
    
ffmpeg works fine - but now I need to use it without root access.

    



    When i try to use ffmpeg without root access, I get the following error :

    



    ffmpeg: error while loading shared libraries: libx264.so.148: 
        cannot open shared object file: No such file or directory


    



    The final goal is to be able to use ffmpeg inside my PHP scripts which do not root access.

    


  • How to install ffmpeg for PHP

    20 décembre 2016, par Julie Bsd

    I’ve successfully installed ffmpeg using ssh, as root, on my dedicated server (CentOS 7).
    ffmpeg works fine - but now I need to use it without root access.

    When i try to use ffmpeg without root access, I get the following error :

    ffmpeg: error while loading shared libraries: libx264.so.148:
           cannot open shared object file: No such file or directory

    The final goal is to be able to use ffmpeg inside my PHP scripts which do not root access.

  • HLS files(.m3u8, .ts) does not created on nginx_rtmp_module

    6 mars 2018, par sujoyu

    I want to treanscode RTSP to RTMP to HLS using ffmpeg and nginx_rtmp_module.

    But HLS files(.m3u8, .ts) do not created.

    I’m testing on Docker(amazonlinux image).

    I can access and play rtmp://localhost:1935/live/camera1 by VLC Player, but can not access http://localhost:8088/live/camera1.m3u8.

    docker run command :

    docker run -it -p 8088:8088 -p 1935:1935 -v $(pwd):/tmp/share amazonlinux bash

    nginx.conf :

    user root;
    worker_processes  1;
    error_log  /var/log/nginx/error.log debug;

    events {
     worker_connections  1024;
    }

    rtmp {
     server {
       listen 1935;
       access_log  /var/log/nginx/rtmp_access.log;
       application live {
         live on;
         hls on;
         hls_path /usr/local/nginx/html/hls;
         hls_fragment 5s;
         hls_type live;
         hls_nested on;
       }
     }
    }

    http {
     server {
       listen      8088;

       location / {
         root /usr/local/nginx/html/;
       }

       location /hls {
         types {
           application/vnd.apple.mpegurl m3u8;
           video/mp2t ts;
           text/html html;
         }

         alias /usr/local/nginx/html/hls;
       }
     }
    }

    ffmpeg command : (using sample video rtsp://184.72.239.149/vod/mp4:BigBuckBunny_175k.mov)

    nohup /root/ffmpeg_sources/ffmpeg/ffmpeg -i "rtsp://184.72.239.149/vod/mp4:BigBuckBunny_175k.mov" -f flv -s 320x240 -an "rtmp://localhost:1935/live/camera1" null &

    ffmpeg version :

    bash-4.2# /root/ffmpeg_sources/ffmpeg/ffmpeg -version
    ffmpeg version N-90214-gdd3f1e3 Copyright (c) 2000-2018 the FFmpeg developers
    built with gcc 4.8.5 (GCC) 20150623 (Red Hat 4.8.5-11)
    configuration: --prefix=/root/ffmpeg_build --pkg-config-flags=--static --extra-cflags=-I/root/ffmpeg_build/include --extra-ldflags=-L/root/ffmpeg_build/lib --extra-libs=-lpthread --extra-libs=-lm --bindir=/root/bin --enable-gpl --enable-libx264 --enable-nonfree
    libavutil      56.  8.100 / 56.  8.100
    libavcodec     58. 13.102 / 58. 13.102
    libavformat    58. 10.100 / 58. 10.100
    libavdevice    58.  2.100 / 58.  2.100
    libavfilter     7. 12.100 /  7. 12.100
    libswscale      5.  0.102 /  5.  0.102
    libswresample   3.  0.101 /  3.  0.101
    libpostproc    55.  0.100 / 55.  0.100

    nginx version : nginx version: nginx/1.13.9

    nginx_rtmp_module version : nginx-rtmp-module-1.2.1

    and directory permission :

    bash-4.2# pwd
    /usr/local/nginx/html
    bash-4.2# ls -l
    total 48
    -rw-r--r-- 1 root root   537 Mar  5 07:24 50x.html
    drwxrwxrwx 2 root root  4096 Mar  6 04:46 hls
    -rw-r--r-- 1 root root   612 Mar  5 07:24 index.html
    -rw------- 1 root root 36262 Mar  6 04:46 nohup.out

    Help...