
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (96)
-
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 -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (8944)
-
Adjusting watermark according to video resolution using ffmpeg [duplicate]
1er février 2019, par Awais fiazThis question already has an answer here :
I have a question related to video conversion I am trying to add watermark to different high resolution videos using
ffmpeg
and its getting added pretty fine but the issue is same watermark gets bigger on low resolution videos which was looking fine with high resolution video.Is there any possible way i can scale watermark according to video resolution ?.I am sure there is but I seem to be pretty blank in this area any help regarding this issue would be really appreciated.This is the command that i am using to add watermark in my php script
/usr/bin/ffmpeg -i /var/www/html/demo/files/conversion_queue/15490094394e7a7.mp4 -i /var/www/html/demo/upload/images/watermark.png -filter_complex 'overlay=10:10' -y /var/www/html/cb_corp_git/upload/files/conversion_queue/15490094394e7a7-wm.mp4
-
How to stream two videos concurrently using js or react or node js ?
15 novembre 2022, par itayushI am trying to create a video streaming website which can play multiple videos concurrently (something similar to a video management system). The requirement for now is just to be able to play two videos at the same time.


All the tutorials I have seen so far are streaming only one video. I am a bit lost and helpless since I am still learning about JS as well. So, here, I am hoping that any of you could make some suggestion on the libraries that I could use (I learned about ffmpeg), even the process on how to make it work or how to kick start.


Any help would be very much appreciated !


I can already stream a video using node JS and I am hoping to play two videos at the same time.


-
FFMPEG -> QSV -> glTexImage2D
20 novembre 2019, par gameOverManis anyone aware of the most accelerated route of binding an AVFrame returned from ffmpeg avcodec_receive_frame when using QSV to an OpenGL texture ? I’m using ffmpegs QSV decode and mapping a NV12 returned frame to a software buffer via av_hwframe_map to allow the OpenGL creation of two planes (NV12) as two textures for GLSL pixel shader colour conversion and more on route to display. Is this the fastest route using the two frameworks ? Native QSV via dx9 + HLSL is much faster. I’ve seen some OpenCL extensions for surface mapping. Any pointers are interesting to know. Note, QSV decoded frames have advantages as they may not reside in dedicated gc video memory as a thought.