
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (60)
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
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. -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (9166)
-
Give a video rounded transparent edges so that it can be overlayed on another video using FFMPEG
15 octobre 2020, par Kevin JastiIm trying to overlay a smaller video (200x200)on top of a bigger video (800x800).



I've used the FFMPEG overlay filter to achieve this



ffmpeg -i big.mp4 -vf "movie=small.mkv[clip2]; [in][clip2] overlay=1:5 [out]" final.mp4




Challenge is that the smaller video needs its edges to be rounded.
I have tried working with alphaextract and alphamerge. The documentation on FFMPEG is sparse and im not sure how to go about it.


-
Creating a transparent video out of an input video
28 juillet 2021, par poldownI'm trying to create a video with a transparent background out of an input video (with the same dimensions, etc.). I tried several strategies (using the
chromakey
filter and others) and none worked... I got this far :

ffmpeg -i input.mp4 -filter_complex "color=color=black@0.0,format=yuva420p[bg],[bg][0:v]scale2ref[bg][0v],[bg]drawbox=x=10:y=10:w=100:h=100:color=pink@0.5;[0v]nullsink" -c:v qtrle -an "alpha.mov"



- 

- creating a video stream with transparency, and setting a transparent background (black@0.0)
- scaling the transparent video according to the input video
- [for testing purposes : drawing a box over the transparent video. I omitted the part in which I embed subtitles onto the video, for simplicity's sake]
- discarding the input video stream
- removing the audio stream












It basically works, but the processing never ends - I can't manage to limit the output video length so it'll match the input video's length...
I've tried using the
-shortest
option anywhere in the command - with no success.

-
Merge two video devices into a third device by placing the video next to each other
14 janvier 2021, par Lennart Van der GotenThe Situation


I have two webcams (with associated video devices
/dev/video0
and/dev/video1
). The first webcam generates a resolution of 720p while the other one generates 1080p.

The Task


I would like to create a new video device
/dev/video2
that is defined by putting the video from the first webcame next to the one coming from the second webcam.