
Recherche avancée
Médias (91)
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (44)
-
L’agrémenter visuellement
10 avril 2011MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté. -
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (4216)
-
How to Watermark videos on word press site ? [on hold]
8 août 2017, par Sonia khanHow can i add water mark to uploaded videos on hosting server , i have used ffmpeg on windows pc to watermark videos with code lines but i dont know how to do that on server/ wordpress site via any plugin or php script or via ffmpeg code line ?
-
Decode `ts` videos on GPUs ?
30 octobre 2018, par Sam RadhakrishnanI have a Nvidia Geforce GTX 1080Ti that I am using for video processing. I am trying to decode videos on the GPU and am able to decode
Mpeg-4
videos. However the problem is when I try using this forts
files. It errors out with a message saying that the format is unsupported. I am usingopencv::cudacodec::VideoReader
for decoding videos.I have tried a couple of things-
- Spawning an encoding session to encode
ts
tomp4
and then decode. However this seems like an overkill. - Decode using the CPU and then upload the frames to GPU for processing. This seems to be the best solution right now. However it still takes almost 4 times the time it takes for
mp4
files on the GPU. - Use
ffmpeg
to copy the audio/video streams and change the container tomp4
. This leads to almost twice the number of frames when decoded on the GPU
I am looking for a solution to decode
ts
files on the GPU. - Spawning an encoding session to encode
-
How to use ffmpeg to merge the median of pixels in 2 videos
24 avril 2020, par jocelynI'm new to coding and ffmpeg so please go easy on me !



I am trying to merge 2 videos (they are identical) using the median of the each pixel. I have to use ffmpeg to do this but am unable to find any information online.



I have managed to merge 2 identical videos using the average of each pixel using the following command(I think at least, I'm not sure how to tell if this worked but the command didn't give any errors so I assume it did)
- "ffmpeg -i video1.avi -i video2.avi -filter_complex "blend=all_mode='average'" mergedvideo.avi"



Can anyone help provide more information on how I can use ffmpeg to merge the videos using the median of each video pixel ?



Thanks in advance !