Recherche avancée

Médias (1)

Mot : - Tags -/publishing

Autres articles (29)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • 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

Sur d’autres sites (5591)

  • lavu/hwcontext_qsv : use mfxImplDescription instead of mfxExtendedDeviceId on Linux

    27 novembre 2023, par Haihao Xiang
    lavu/hwcontext_qsv : use mfxImplDescription instead of mfxExtendedDeviceId on Linux
    

    mfxExtendedDeviceId mightn't be supported in certain configurations of
    oneVPL on Linux, so we can't ensure a property filter for
    mfxExtendedDeviceId.DeviceID or mfxExtendedDeviceId.VendorID works as
    expected. This fixed the issue mentioned in [1]

    [1] http://ffmpeg.org/pipermail/ffmpeg-user/2023-October/056983.html

    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] libavutil/hwcontext_qsv.c
  • http-flv live broadcast with flv.js error

    29 mars 2019, par Forest Yang

    When I try nginx + nginx-http-flv-module + flv.js to play video from camera, error happened, but play with VLC works fine.

    log in nginx :

    flv live: app args MUST be specified, client: 192.168.89.1, server: myserver, request: "GET /live.html HTTP/1.1", host: "192.168.89.134:8080"

    Some key configurations,

    nginx.conf :

    http{
      ...
      server{
      ...
       location /live {
               flv_live on;
               chunked_transfer_encoding  on; #open 'Transfer-Encoding: chunked' response
               add_header 'Access-Control-Allow-Origin' '*'; #add additional HTTP header
               add_header 'Access-Control-Allow-Credentials' 'true'; #add additional HTTP header
           }

       }
    }

    rtmp {
       server {
           listen 1935;
           server_name 192.168.89.134;

           application myapp {
               live on;
               gop_cache on;
             }
       }
    }

    ffmpeg command :

    ffmpeg -f avfoundation -s 1280x720 -r 30  -i 0 -f flv rtmp://192.168.89.134:1935/myapp/test

    VLC network url :

    http://192.168.89.134:8080/live?port=1935&amp;app=myapp&amp;stream=test

    HTML with flv.js :

    if (flvjs.isSupported()) {
               var videoElement = document.getElementById('videoElement');
               var flvPlayer = flvjs.createPlayer({
                   type: 'flv',
                   'isLive': true,
                   url: 'http://192.168.89.134:8080/live?port=1935&amp;app=myapp&amp;stream=test'
               });
               flvPlayer.attachMediaElement(videoElement);
               flvPlayer.load();
               flvPlayer.play();
           }

    Can anyone tell me why based your experience ? thank you.

  • aarch64 : NEON optimized FIR audio resampling

    21 avril 2014, par Janne Grunau
    aarch64 : NEON optimized FIR audio resampling
    

    Optimized for the default filter length 16.

    30% faster opus silk decoding.

    • [DH] libavresample/aarch64/Makefile
    • [DH] libavresample/aarch64/asm-offsets.h
    • [DH] libavresample/aarch64/resample_init.c
    • [DH] libavresample/aarch64/resample_neon.S
    • [DH] libavresample/internal.h
    • [DH] libavresample/resample.c