
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (45)
-
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...) -
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 : (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
Sur d’autres sites (7170)
-
Inserting an image inside a video every few frames using ffmpeg
9 mars 2017, par Erez HochmanCan I use FFMPEG to insert an image every 20 frames in a video ?
I’m trying to create a subliminal message experiment and I thought it would be an easy way to make it but I can’t find anything online.I tried to make something myself and created a script that :
1.splits a file into audio and video files
2.splits the video into frames
3.overwrites every 20th image in the sequence with the message image
4.re-encoding the video
5.concatenating it with the original audiothis works but it’s way more disk space consuming to be comfortable, is there a better way to do this ?
any advice or thought would be happily welcome. -
SECURITY FIX : Only allow image file types by default.
23 octobre 2018, par blueimpSECURITY FIX : Only allow image file types by default. This moves the image file types limit in the library file. This also adds a default setting to replace dots in filenames.
-
FFMpeg RTSP stream with image overlay
4 octobre 2018, par Matthew StarkeyI am trying to overlay an image on an FFmpeg stream that comes from an RTSP stream from an IP camera.
The command I have been using before trying add an image is the following :
-rtsp_transport tcp -i rtsp://theRtspUrl -f mpeg1video -b:v 512k -an -r 24 -
This works great, but when I try and add an image to overlay over the stream with the following command :
-rtsp_transport tcp -i rtsp://theRtspUrl -f input -i path/to/image.png -filter_complex overlay -f mpeg1video -b:v 512k -an -r 24 -
I get nothing. no stream or error or anything.
If anyone out there knows how to solve this it would be much appreciated.