
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (89)
-
Soumettre bugs et patchs
10 avril 2011Un logiciel n’est malheureusement jamais parfait...
Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
Si vous pensez avoir résolu vous même le bug (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (7868)
-
When using ffplay, how to eliminate milliseconds from timestamp display in the video-filter
13 mai 2021, par DaveSo when specifying a video-filter to display current video-time in 'hms' layout, the filter appends a millisecond value after the seconds-field.
I want to eliminate the milliseconds portion.


So far, my invoked cmd looks like :


ffplay myfile.mp4 -vf "drawtext=text='%{pts \: hms}':fontsize=20:fontcolor=white: box=1: boxcolor=black"



i.e. instead of : 00:00:01.001 I want just 00:00:01 to display.


[One might have thought that there would exist an 'hmsm' for the former,
and that 'hms' would be the latter, but it just doesn't work that way.] (sigh)


-
cuda10.2 cuvidParseVideoData call back data CUVIDPICPARAMS has problem
19 mai 2021, par goforwardffmpeg3.4.5 parse H265 stream, call av_read_frame(), and pass AVPacket to CUVIDSOURCEDATAPACKET,
then call cuvidParseVideoData, call is successful. but call back function pfnDecodePicture return with wrong CUVIDPICPARAMS (picwidthinmbs = 0)


-
MediaStream through PeerConnection in NodeJS Application
4 novembre 2014, par Thomas MarrinanI want to take a
MediaStream
(video only for now) captured in a browser usinggetUserMedia()
and stream it to a NodeJS Application using WebRTC. I would like to pipe the video stream into FFMpeg in order to extract frames server side in real-time.I know that the
<canvas></canvas>
element can be used to extract video frames client side, but that is not useful in my situation.I also know that MediaRecorder can be used to save files, but this is not the purpose of piping the MediaStream into FFMpeg.
Ideally, I would like to create a
PeerConnection
where any browser client would capture a video and send it to a single peer. The NodeJS Application is a peer that only receivesMediaStreams
from other peers. Additionally, I would like to have an unlimited number of peers sendingMediaStreams
to the NodeJS Application, but not sending it to one another.I have looked at wrtc for node (https://github.com/js-platform/node-webrtc) - specifically their streamtest example. However, this does not seem to be fully functional, as I never receive the remote
MediaStream
in the NodeJS Application.