
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 (42)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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
Sur d’autres sites (7783)
-
Dash JS Player Cross Browser Compatibility
21 mai 2015, par JJ The SecondI 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 :
-
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 ?
-
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 ?
-
Do you guys think I’m going wrong direction for this ?
-
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 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"