
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (105)
-
Publier sur MédiaSpip
13 juin 2013Puis-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, parMediaSPIP 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, parLes 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 Tokumeiavformat/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> -
Ffmpeg in docker-compose could not be started
27 mai 2021, par indexlin





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


version: '3'

networks:
 b2c:
 driver: bridge

services:
 ffmpeg:
 container_name: b2c-ffmpeg
 image: jrottenberg/ffmpeg

 nginx:
 container_name: b2c-nginx
 image: nginx:1.17.0
 depends_on:
 - "php"
 volumes:
 - ../server/public:/server/public
 - ./config/nginx/conf.d:/etc/nginx/conf.d
 - ./config/nginx/nginx.conf:/etc/nginx/nginx.conf
 - ../data/nginx/logs:/logs
 networks:
 - b2c
 ports:
 - "20001:80"

 php:
 container_name: b2c-php
 image: indexlin/gzyx-php7.2.4:1.1
 working_dir: /server
 volumes:
 - ../server:/server
 #- ./php/docker-php-ext-xdebug.ini:/usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini
 networks:
 - b2c
 ports:
 - "23001:9000"
 #user: "1000:1000"

 mysql:
 container_name: b2c-mysql
 image: mysql:5.7.21
 environment:
 MYSQL_ROOT_PASSWORD: root
 volumes:
 - ../data/mysql/lib:/var/lib/mysql
 #- ../data/mysql/log:/var/log/mysql
 - ./config/mysql/mysqld.cnf:/etc/mysql/mysql.conf.d/mysqld.cnf
 networks:
 - b2c
 ports:
 - "25001:3306"

 redis:
 container_name: b2c-redis
 image: redis:5.0.5
 volumes:
 - ../data/redis:/data
 - ./config/redis/redis.conf:/usr/local/etc/redis/redis.conf
 networks:
 - b2c
 ports:
 - "27001:6379"

 node:
 container_name: b2c-node
 volumes:
 - ../server:/server
 - ../web:/web
 image: node:10.15.3
 networks:
 - b2c
 tty: true
 working_dir: /web
 ports:
 - "29001:29000"



-
How to manually reset the offset of an mp4 video created from m4s files ?
12 août 2020, par natdevI'm building a service that combine
.m4s
files (from a dash stream) to amp4
video.

I have some samplem4s
files from a random point in time of a stream,

usingffmpeg
on those file + the init file does the job.

cat init.mp4 032.m4s 033.m4s 034.m4s > output.mp4



I have tried concating the
m4s
files to themp4
init file and I manage to play the video,

but there is an offset from the encoded video segments.

I guess
ffmpeg
does reset that somehow, and I was wondering how can I reset that offset as well ?

Having a little bit of experience withdash
, I know that there is a field namepresentationTimeOffset
that is responsible to set the offset.