
Recherche avancée
Autres articles (43)
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (5769)
-
avfilter/vf_colorspace : fix range for output colorspace option
28 septembre 2016, par James Almer -
Maximum MOV file supported audio / video length
27 octobre 2020, par AKHILASH TPThanks in advance.


We use libav for MOV muxing. Below is the audio and video format used. Can you help us with our questions ?


Video format - h264
Audio format - 4 channel, 24bit, 48KHz PCM


Queries :


- 

- Can you please guide us to find the maximum length supported for a MOV file ?
- Does libav have any specific limitation related to the maximum duration for muxing a MOV file ?






-
avformat/matroskadec : Improve length check
27 mars 2019, par Andreas Rheinhardt via ffmpeg-develavformat/matroskadec : Improve length check
The earlier code had three flaws :
1. The case of an unknown-sized element inside a finite-sized element
(which is against the specifications) was not caught.2. The error message wasn't helpful : It compared the length of the child
with the offset of the end of the parent and claimed that the first
exceeds the latter, although that is not necessarily true.3. Unknown-sized elements that are not parsed can't be skipped. Given
that according to the Matroska specifications only the segment and the
clusters can be of unknown-size, this is handled by not allowing any
other units to have infinite size whereas the earlier code would seek
back by 1 byte upon encountering an infinite-size element that ought
to be skipped.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@googlemail.com>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>