
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (50)
-
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...)
Sur d’autres sites (8390)
-
VIDEO HLS (m3u8) - Simulate a local connection rate ?
13 octobre 2017, par kouakou alexyI am in local development, wampserver and laravel 5.3
I use ffmpeg to convert video files to HLS (video.m3u8).
The quality adapts according to the user’s connection speed. Youtube uses this technology.
I now want to test according to the bitrate but I am in local.
The video plays automatically in the best format.Is there a solution to simulate a local connection rate ?
-
yocto, how to build ffmpeg dev packages
28 mai 2018, par AlekI got a yocto built for imx board. I can build ffmpeg package, but need also to populate headers and libraries in my SDK. Building using
bitbake core-image-minimal -c populate_sdk
does not add ffmpeg headers to SDK image.Didn’t have any problems with prervious libraires like modbus, etc.
How to build ffmpeg development packages ?
Thanks in advance.
-
Generating fragmented mp4 ffmpeg is causing the video to have a duration of 0ms in bento4
23 octobre 2020, par nobossIm using ffmpeg to generate a fragmented mp4 with the following command :


ffmpeg -re -i ./input.mp4 -g 52 \
-strict experimental -acodec aac -ab 64k -vcodec libx264 -vb 448k \
-f mp4 -movflags frag_keyframe+empty_moov \
./output.mp4



When I'm playing it in an HTMLMediaElement the
video.duration = Infinity
.
When I inspect the file withmp4info
from bento4 I get :

File:
 major brand: isom
 minor version: 200
 compatible brand: isom
 compatible brand: iso2
 compatible brand: avc1
 compatible brand: mp41
 fast start: yes

Movie:
 duration: 612961 ms
 time scale: 1000
 fragments: no

Found 2 Tracks
Track 1:
 flags: 3 ENABLED IN-MOVIE
 id: 1
 type: Video
 duration: 0 ms
 language: und
 media:
 sample count: 15322
 timescale: 12800
 duration: 7844864 (media timescale units)
 duration: 612880 (ms)
 bitrate (computed): 2587.007 Kbps
[...]
Track 2:
 flags: 3 ENABLED IN-MOVIE
 id: 2
 type: Audio
 duration: 0 ms
 language: eng
 media:
 sample count: 26398
 timescale: 44100
 duration: 27031552 (media timescale units)
 duration: 612960 (ms)
 bitrate (computed): 128.584 Kbps
[...]



Has someone any idea what I'm doing wrong ?