
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (33)
-
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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 (8804)
-
How to capture mpeg ts streaming via udp in Golang ?
9 octobre 2019, par LucasI have some live stream shared via some udp adress with specified port. I would like to capture this and save to my filesystem.
It says :
mpegts, from ’udp ://xx.x.x.x:xx’ and then some metadata (x are for safety reason, in original these are numbers ofcourse).With that being said, is there any Go package capable to simple capture this stream ? If no, can someone provide FFMPEG command to do that ?
I need to say I am completly new to the streaming subject.
What I found is :
Golang package (but not idea how to configure it) :
https://godoc.org/github.com/asticode/go-astits#DemuxerThis thread, but given ffmpeg command seems to not work properly (it starts, gives some output [I can provide it] and hangs doing nothing) :
https://ffmpeg.zeranoe.com/forum/viewtopic.php?t=5175&fbclid=IwAR0Sxshm1rDPyaCgvAig5D6pnAEPl0mNzxf3rFDgZk6pEg4nJr1ChBaxNHsDisclaimer : Had to use ’mpeg2-ts’ in tags, beacuase there is no ’mpeg-ts’. Not sure if I am messing something....
-
Révision 93500 : Annuler le commit précédent sur les espaces insécables.
9 décembre 2015, par pierre.fiches@gmail.comC’est probablement sur la chaine de langue qu’il faut intervenir.
Elle est dans ecrire_fr.php, ne faudrait-il pas la déplacer dans le plugin forum
texte_statut_publies
texte_statut_attente_validation
? -
Extract different camera frames (multiplex)
22 août 2016, par Mike IssaI have a sequential multiplexed video with 3 cameras. These videos are being converted from VHS to DVD (.VOB format). I am using ffmpeg to extract all frames in .JPG format.
I want to write a python script that scans for a certain object in the frame (like a constant/static object in the background) and organizes all the frames containing that object into a folder. This is the only way I can think of to separate the camera views, because as the video progresses, one of the cameras turns off for a few minutes and then turns back on, ruining the interval of 3-frames-per-camera-view sequence*.
- I tried writing a python script that extracts every third frame (starting from the first frame for camera 1, second frame for camera 2, third frame for camera 3) into separate folders, but this did not bode well when I found out that one of the cameras switches off and then back on.
I tried a "detection patch" method using VirtualDub found in this forum, but it didn’t work for me (not sure why).
Should I be using numpy or openCV to find a certain block of pixels in each frame to do the organizing of camera views, or is there a simpler way ?