
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (48)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...)
Sur d’autres sites (9212)
-
Audio Video Editing in Python : How to do it ? [on hold]
12 mai 2019, par DoakCodeDoes anyone know how to do it ? It’s a bit more complex then then the usual docs I’ve read, so I don’t know where to start and I’d appreciate someone leading me to the right docs or the right path.
The software should be doing following :
- Taking a background picture and making it blurred -> The background
- In the front should be :
- A picture
- Text
- A progressing timer (which displays the current status of the video)
- Last, but not least, audio should be added to the video or vice versa as the video is supposed to end when the audio ends to round things up.
As this all is pretty complex editing for a python programme, I don’t know which library(ies) to use.. If someone has a solution / idea please reply !
-
FFmpeg concat after overlay's (append)
27 avril 2017, par Loïc NoestI have some video to witch i need to concat a header and add some overlay’s, the problem is that i need to do the overlay’s first becouse otherwise the time woundn’t be correct, and only afterwards concat the header to the begining of the video
ffmpeg -i talk.mp4 -i start_pancarte.png -i end_pancarte.png -i logo_alpha.png -i header.mp4-filter_complex\
" overlay= enable='between(t,0,3.04)' [x];\
[x] overlay = enable='between(t,495.64, 498.6)' [y];\
[y] overlay=15:15:enable='between(t,3.04,495.64)'[c];\
[c] concat " solution.mp4This obviously adds the header to the end and I need it in the front, how do I do this (in 1 command) ?
-
How to stream video in the GUI using PyQt5 ?
30 mars 2020, par ShriyaI am a newbie with Python as well as ffmpeg. Once the webcam is assigned to the Pine, the video gets stored in the /mnt/hls directory. The video from this directory needs to be displayed on the Front End which was designed using QtDesigner and the wiring is done using PyQt5. The video needs to be displayed when a button is clicked by the user in the OpenGLWidget.
The command line for the video stream is
"Ffplay -fflags nobuffer -flags low_delay [HLS playlist]"
, which can be run usingos.system()
. My issue is with getting the video displayed in the OpenGLWidget. Could someone help me through this or direct me to another similar question or a different link ? Thank you.