Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (103)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (16001)

  • How to detect a surge of activity in a video ?

    22 mars 2019, par Alain Collins

    I’d like to automatically detect a surge of activity in a video, e.g. basketball jump shot, hockey face-off, sprinters starting, etc., preferably using ffmpeg.

    In these instances, there’s some motion as the players assume their positions, followed by a pause as they wait for the ref to throw the ball or drop the puck, followed by a lot of motion as all players begin to react. It’s also typical that the camera will be still during this period and begin moving as the ball or puck changes position.

    I’ve tried using the ’select’ filter select='gt(scene,0.4)', but that seems to be more concerned with scene changes (i.e., more dramatic changes) even with low thresholds.

    I also tried exporting the scene information and examining it manually, but couldn’t find a clear pattern that correlated with motion in the video.

    UPDATE : I ran a mestimate on the video. Processing took a long time, but there was definitely a change in activity before and at point of interest. Is there a way to export this information to a file, or otherwise detect the amount of motion seen my mestimate ?

  • 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&app=myapp&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&app=myapp&stream=test'
               });
               flvPlayer.attachMediaElement(videoElement);
               flvPlayer.load();
               flvPlayer.play();
           }

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

  • FFmpeg settings for encoding for 4K UHD Blu-ray Disc

    4 avril 2019, par Matt McManis

    What FFmpeg settings should I use for taking raw video and converting it to x265 for 4K UHD Disc ? This is a 1-Pass example.

    Are there more -x265-params needed ?

    For Audio, will DTS -c:a dca -strict -2 be compatible with 4K discs and palyers ? Also what is the Lossless command for dca ?


    Here is what I’ve got so far :

    ffmpeg -y

    -i rawvideo

    -c:v libx265
    -preset slow -b:v 50M -maxrate 75M -bufsize 75M
    -pix_fmt yuv420p10le
    -r 60
    -vf "scale=3840:-2"
    -profile:v main10 -level 5.1 -sar 1:1 -x265-params "colorprim=bt2020:transfer=bt2020:colormatrix=bt2020"
    -map 0:v:0?

    -c:s mov_text
    -map 0:s?

    -c:a dca -strict -2
    -b:a 1509k
    -map 0:a?

    -f mp4

    -threads 0

    output.mp4