
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 (56)
-
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 ;
-
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
Sur d’autres sites (9299)
-
Image Overlay on video using JavaCV for Android
1er juin 2015, par Hermine SanasaryanI’m trying to add image with transparent background on the video, using JavaCV.
I’m using FFmpegFrameGrapper, for grapping frames and I’m trying to set my image on every frame of the video, and record it again using FFmpeg Recorder, but no result.
I’m doing something like this
// img is the IplImage of a frame
private IplImage setOverlay(IplImage img){
cvCopy(overlayImage, img); //overlayImage I'm getting from
//internal storage
cvResetImageROI(img);
return img;
} -
Overlay image on video using FFMPEG
16 juin 2020, par Cláudio CoelhoI'm trying to overlay an image on video using ffmpeg with php :



$ffmpeg = FFMpeg\FFMpeg::create();
 $video = $ffmpeg->open($videoOriginalFilePath);
 $video
 ->filters()
 ->watermark($imageFilePath, array(
 'position' => 'absolute',
 'x' => 100,
 'y' => 0,
 ));
 $video->save(new FFMpeg\Format\Video\X264(), 'output.mp4');




This is working fine this way but the problem is that I need this "$imageFilePath" to be not a real path, but an image created by imagick. Is there anyway that I can do it ?


-
FFmpeg add sound to image as video
19 juin 2020, par matI am trying add sound to an image, like you would with a video



ffmpeg -i image.png -i sound.mp3 output.mp4




but ffmpeg treats it as "metadata" and the video ends up blank with just the audio.



I came up with this but there's for sure a better way and it ends up with 2 seconds of silence at the end :



ffmpeg -f lavfi -i color=c=black:s={IMAGE_W}x{IMAGE_H}:d=10 -i image.png -filter_complex [0:v][1:v]overlay=0:0 -i sound.mp3 -shortest output.mp4




IMAGE_W and IMAGE_H are replaced by a script



Edit : the 2 seconds of silence at the end are somehow caused by the audio files I have (which are ogg), not by the command