Recherche avancée

Médias (1)

Mot : - Tags -/livre électronique

Autres articles (105)

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

  • MediaSPIP Player : les contrôles

    26 mai 2010, par

    Les contrôles à la souris du lecteur
    En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)

Sur d’autres sites (11075)

  • 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;

  • How to manually reset the offset of an mp4 video created from m4s files ?

    12 août 2020, par natdev

    I'm building a service that combine .m4s files (from a dash stream) to a mp4 video.
    &#xA;I have some sample m4s files from a random point in time of a stream,
    &#xA;using ffmpeg on those file + the init file does the job.

    &#xA;

    cat init.mp4 032.m4s 033.m4s 034.m4s > output.mp4&#xA;

    &#xA;

    I have tried concating the m4s files to the mp4 init file and I manage to play the video,
    &#xA;but there is an offset from the encoded video segments.

    &#xA;

    I guess ffmpeg does reset that somehow, and I was wondering how can I reset that offset as well ?
    &#xA;Having a little bit of experience with dash, I know that there is a field name presentationTimeOffset that is responsible to set the offset.

    &#xA;