Recherche avancée

Médias (0)

Mot : - Tags -/signalement

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

Autres articles (49)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (7071)

  • ffserver : add comment about how Launch path program is created

    28 novembre 2013, par Stefano Sabatini
    ffserver : add comment about how Launch path program is created
    
    • [DH] ffserver.c
  • 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...

  • Extracting frames from a video created by muxing a bunch of images together is changing the integrity of the frames [closed]

    13 mars 2023, par dreamersparadox

    I am trying to transfer a bunch of images as a video. What I am doing is simply muxing these static images into a video using the following commands.

    



    ffmpeg -framerate 1 -i %02d.jpg -codec copy 1.mkv


    



    After this, I verify the integrity of my static images and the frames in the video using -

    



    ffmpeg -i %02d.jpg -f framehash -


    



    and

    



    ffmpeg -i 1.mkv -map 0:v -f framehash -


    



    I get the same hashes so it means I have archived the images properly. Now next I send this video to my friend who extracts the frames using -

    



    ffmpeg -i 1.mkv mkv%02d.jpg 


    



    Now after extracting the hashes don't remain the same that means the integrity is lost.

    



    How to extract the frames as it is so that integrity is not lost ?

    



    Also if you any other way to achieve what I am trying, please advice.

    



    Here are the hashes.