
Recherche avancée
Autres articles (51)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...) -
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 (4858)
-
Http live stream video segmenting. non-Mac approach
20 juin 2012, par AgzamAnyone knows a good way to use http live streaming tools on non-Mac platforms ?
Can you tell me at least if there's good alternatives ? I need mediafilesegmenter and mediastreamvalidator.Or maybe anyone has a source code or something like that...
UPD : I've tried different segmenters, most of them are based on Carson's open-sourced segmenter. Now the difference between Apple's mediafilesegmenter and this one, that it takes only a transport stream, not just any video. And I need to segment h264 videos.
When I use ffmpeg to convert h26s to mpeg-ts I'm getting much bigger files in the end. Even if I try to preserve same audio codec (aac) it changes video codec form avc to mpeg-ts.Damn I hate Apple. How can they propose that thing as a standard if they don't even provide workarounds for another platforms.
I still need to find a way to segment h264 videos, and keep in the segmented files avc and aac codecs.
-
opencv vs live555 vs ffmpeg for decoding rtsp stream with added metadata ?
17 août 2021, par Peter ParkerFrom an IP camera I must decode a h.264 encoded rtsp transport stream containing a program clock reference (PCR), transmitted in the adaptation field of the TS packet. I am using a Windows machine.


This PCR field is transmitted at least every 100ms.


I need to extract this timestamp data for each frame of the video.


I would also like to use OpenCV to process each frame, whilst acknowledging the current time, based on the PCR field value.


OpenCV is not capable of decoding the live rtsp url AND it discard the ancillary data I need.


Do I need to use live555 along with ffmpeg to decode the stream ? Or is it possible to extract this data using ffmpeg and opencv libraries alone ?


Suppose I embed a SMPTE/MISB compliant Microsecond Timestamp (KLV metadata packet) in the VANC space after achieving this.


Will the same strategy work ?


Thanks in advance for any pointers.


-
libavformat/subfile : Improve AVSEEK_SIZE/SEEK_END seeking
20 juin 2019, par Andreas Rheinhardtlibavformat/subfile : Improve AVSEEK_SIZE/SEEK_END seeking
The subfile protocol treats an end of 0 as meaning "until EOF" ; this got
implemented by simply setting the end to INT64_MAX. But seeking relative
to EOF or AVSEEK_SIZE seeking hasn't been adapted ; the result is that
e.g. the duration of transport streams isn't correctly determined when
this option is used. This is fixed in this patch.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>