
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (54)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
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 -
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 (6605)
-
avcodec/movtextdec : Add support for large boxes(>32 bit)
21 mai 2015, par Niklesh -
How to display a stream of mdat/moof boxes in VLC ? [closed]
8 juillet 2024, par roacsI am trying to display a real-time video stream in VLC. The snag is that the real-time video that is being received is a stream of just the mdat and moof boxes of a fragmented MP4 file that is being recorded elsewhere. The initialization information (ftyp/moov) is not and will never be available in the real-time stream. There is also no audio.


I have access to initialization information (ftyp/moov) of a previously completed file and can use that to aid in the processing/streaming of the real-time mdat/moof boxes.


I am currently extracting the contents of the mdat box, splitting those up and packaging them in 188 byte MPEG-TS packets and multicasting them for VLC to pick up. And just as a shot in the dark, every 50 mdat's I am also packaging the SPS and PPS NALUs from the initialization information of the completed file and multicasting those in one MPEG-TS packet.


Input looks like this :


- 

- ...
- mdat 1
- moof 1
- mdat 2
- moof 2
- ...
- mdat N
- moof N
- ...




















And my output looks like this :


- 

- ...
- MPEG-TS 1 containing first 184 bytes of mdat 1
- MPEG-TS 2 containing next 184 bytes of mdat 1
- ...
- MPEG-TS N containing last 184 bytes of mdat 1
- MPEG-TS N+1 containing first 184 bytes of mdat 2
- MPEG-TS N+2 containing next 184 bytes of mdat 2
- ...
- MPEG-TS N+M containing last 184 bytes of mdat 2
- ...
- MPEG-TS containing SPS and PPS NALU
- ...


























VLC gets the data but no video playback.


How do I process this input in order to get it to play in VLC ?


-
How can we know the supported transport for given URL in av_fromat_open_input() FFmpeg
6 juin 2014, par Tarun SeeraI a using av_format_open_input() for open local and live both URL.
The supported transport for live is TCP and for local is UDP.
I would like to know supported transport for given URL at run time how can achieve this.