Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (42)

Sur d’autres sites (7783)

  • Dash JS Player Cross Browser Compatibility

    21 mai 2015, par JJ The Second

    I am conducting a research for my company streaming service. I found dash.js for adaptive streaming which is a perfect solution along with ffMpeg for transcoding.

    So how this solution works is to create bunch of files served in .mpd format. Now the questions I have :

    1. Do you think this a early stage and I should wait before start using DASH.JS ? Do you think there is a better solution for safe and fast streaming ?

    2. Player options : So far the only player I found was this http://dashif.org/reference/players/javascript/1.0.0/

      I have no idea how compatible it is with browsers and what limits I’ll be facing if I chose it. Is there any other solid solution for this ?

    3. Do you guys think I’m going wrong direction for this ?

    4. What are my server requirements to run these technologies ? I have a 500MBs, 64GB Ram, 24 Core, 2TB beast, does this do the job ?

  • avformat/mpegts.c : ignore a section with next flag

    3 avril 2022, par TADANO Tokumei
    avformat/mpegts.c : ignore a section with next flag
    

    'current_next_indicator' of 0 (next) on each section header indicates
    the service information is for immediate future one.
    ffmpeg doesn't need to parse it but current (1) one.

    ref : section 5.1.1 of DVB BlueBook A038 (EN 300 468)

    Signed-off-by : TADANO Tokumei <aimingoff@pc.nifty.jp>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/mpegts.c
  • Ffmpeg in docker-compose could not be started

    27 mai 2021, par indexlin

    enter image description here

    &#xA;&#xA;

    enter image description here

    &#xA;&#xA;

    I have the following docker-compose file but my ffmpeg container does not seem to start for some reason. It outputs a code of 0 and does not give any other info.

    &#xA;&#xA;

    version: &#x27;3&#x27;&#xA;&#xA;networks:&#xA;  b2c:&#xA;    driver: bridge&#xA;&#xA;services:&#xA;  ffmpeg:&#xA;    container_name: b2c-ffmpeg&#xA;    image: jrottenberg/ffmpeg&#xA;&#xA;  nginx:&#xA;    container_name: b2c-nginx&#xA;    image: nginx:1.17.0&#xA;    depends_on:&#xA;      - "php"&#xA;    volumes:&#xA;      - ../server/public:/server/public&#xA;      - ./config/nginx/conf.d:/etc/nginx/conf.d&#xA;      - ./config/nginx/nginx.conf:/etc/nginx/nginx.conf&#xA;      - ../data/nginx/logs:/logs&#xA;    networks:&#xA;      - b2c&#xA;    ports:&#xA;      - "20001:80"&#xA;&#xA;  php:&#xA;    container_name: b2c-php&#xA;    image: indexlin/gzyx-php7.2.4:1.1&#xA;    working_dir: /server&#xA;    volumes:&#xA;      - ../server:/server&#xA;      #- ./php/docker-php-ext-xdebug.ini:/usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini&#xA;    networks:&#xA;      - b2c&#xA;    ports:&#xA;      - "23001:9000"&#xA;    #user: "1000:1000"&#xA;&#xA;  mysql:&#xA;    container_name: b2c-mysql&#xA;    image: mysql:5.7.21&#xA;    environment:&#xA;      MYSQL_ROOT_PASSWORD: root&#xA;    volumes:&#xA;      - ../data/mysql/lib:/var/lib/mysql&#xA;      #- ../data/mysql/log:/var/log/mysql&#xA;      - ./config/mysql/mysqld.cnf:/etc/mysql/mysql.conf.d/mysqld.cnf&#xA;    networks:&#xA;      - b2c&#xA;    ports:&#xA;      - "25001:3306"&#xA;&#xA;  redis:&#xA;    container_name: b2c-redis&#xA;    image: redis:5.0.5&#xA;    volumes:&#xA;      - ../data/redis:/data&#xA;      - ./config/redis/redis.conf:/usr/local/etc/redis/redis.conf&#xA;    networks:&#xA;      - b2c&#xA;    ports:&#xA;      - "27001:6379"&#xA;&#xA;  node:&#xA;    container_name: b2c-node&#xA;    volumes:&#xA;      - ../server:/server&#xA;      - ../web:/web&#xA;    image: node:10.15.3&#xA;    networks:&#xA;      - b2c&#xA;    tty: true&#xA;    working_dir: /web&#xA;    ports:&#xA;      - "29001:29000"&#xA;

    &#xA;