
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (16)
-
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 -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Changer son thème graphique
22 février 2011, parLe thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
Modifier le thème graphique utilisé
Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
Il suffit ensuite de se rendre dans l’espace de configuration du (...)
Sur d’autres sites (3301)
-
Adding current time as timestamp in h264 raw stream with few frames
1er avril 2020, par MichaëlI have a program that spits out an h264 raw stream (namely,
screenrecord
on Android). I'm usingffmpeg
to add a PTS (Presentation Time Stamp) on the frames as follows :


$ my-program | ffmpeg -i - -filter:v setpts='(RTCTIME - RTCSTART) / (TB * 1000000)' out.mp4




This filter computes the current time, and puts it as the PTS.



The trouble is that
my-program
does not produce any output if there is no change in the video. Sinceffmpeg
seems to wait for a bunch of frames before putting them through thesetpts
filter, the computed PTS won't be correct. In particular, the last frame of a sequence will be timestamped when the next sequence starts.


Question : Is there a way (with
ffmpeg
or otherwise) to add current time as PTS to h264 raw frames, where "current time" is when receiving the frame, rather than outputting it ?


Note : The problem is not from buffering from the pipe.


-
QVideoWidget throws GStreamer errror
12 octobre 2015, par NithyeshI’m creating a simple video player using Qt for Imx6 using
QVideoWidget
to display the video output on the UI. The program works fine on desktop but when I try to run the program on the board, I get the following error messsage :GStreamer-CRITICAL **: gst_object_ref_sink: assertion `GST_IS_OBJECT (object)' failed
I have tried installing gst-plugins-good, gst-plugins-ugly and gst-plugins-bad and gst-ffmpeg but still I get the same error message. Any help on the issue is greatly appreciated.
-
OpenCV (C++) Load images sequentially with name containing X
4 avril 2016, par Alec GambleI was wanting to create a program which would take every image within a certain directory (preferably with a specific image prefix) and store them in an array of Mats.
subquestion :
I’m creating the images using ffmpeg previously in the same program.system(
"ffmpeg "
"-i ..." // input file
"-r 10 " // rate in Hz
"..." // output location
);What is the best practice for the location to output the images to considering that they’re to be temporary ? I’m building in XCode and am currently making an OSX application but I would ideally like to be able to port it to iOS. should I use
/tmp
?