
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 (15)
-
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 : (...) -
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)
Sur d’autres sites (3279)
-
chroma key my command for filter white background works but filter white and black ?
21 décembre 2018, par userpovffmpeg -i bakground.avi -i overlay.avi -filter_complex "[1:v]chromakey=0xFFFFFF:0.02:0[keyed]; [0:v][keyed]overlay[out]" -map "[out]" output.avi
this command filter white and black
I need filter only white color
please help me
-
Cutting HEVC video results in parts stating with no video (black image) but correct audio for a few seconds
8 juin 2020, par Oliveri have large HEVC video files and want to cut out parts of them. I use ffmpeg for that with the following command :



ffmpeg -i input.mp4 -ss 01:18:47.040 -c:v copy -c:a copy -to 01:18:42.640 output.mp4




i know that there can be problems when copy is used and no re-encoding, that is why i checked before that the frames specified in the -ss and -to parameters where keyframes (i-frames).



So iam expecting to get a clean cut at the beginning and at the end. But what i get is 10 seconds of black image with normal audio in the beginning until the video starts. To make this clear : 10 seconds of video are missing in the beginning but the audio is fine.



Btw : when moving the -ss part before the -i there seem to be no problems with the video (at least in the beginning). I know about the differences of putting -ss before and after the -i, but i also know, that using -ss after the -i should be slower (and was more accurate in the past) but should not make any differences in the final result. That is why I am so irritated.


-
FFMPEG thumbnail image gives black image
24 mars 2015, par user3772344I am trying to get the thumbnail image of video using ffmpeg. but for some of the video it shows the black image. I have done the following code.
KxMovieDecoder * decoder = [[KxMovieDecoder alloc] init];
[decoder openFile:videoURL error:nil];
gHistory = [[NSUserDefaults standardUserDefaults]objectForKey:[decoder.path lastPathComponent]];;
NSArray *ar = [decoder decodeFrames:1.0f];
KxMovieFrame *frame;
for (KxMovieFrame *frames in ar)
{
if (frames.type == KxMovieFrameTypeVideo) {
frame = ar.lastObject;
break;
}
}
KxVideoFrameRGB *rgbFrame = (KxVideoFrameRGB *)frame;
UIImage *imageKX = [rgbFrame asImage];I don’t know whats the wrong in this method