
Advanced search
Medias (91)
-
Spoon - Revenge!
15 September 2011, by
Updated: September 2011
Language: English
Type: Audio
-
My Morning Jacket - One Big Holiday
15 September 2011, by
Updated: September 2011
Language: English
Type: Audio
-
Zap Mama - Wadidyusay?
15 September 2011, by
Updated: September 2011
Language: English
Type: Audio
-
David Byrne - My Fair Lady
15 September 2011, by
Updated: September 2011
Language: English
Type: Audio
-
Beastie Boys - Now Get Busy
15 September 2011, by
Updated: September 2011
Language: English
Type: Audio
-
Granite de l’Aber Ildut
9 September 2011, by
Updated: September 2011
Language: français
Type: Text
Other articles (64)
-
Other interesting software
13 April 2011, byWe 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: (...) -
Des sites réalisés avec MediaSPIP
2 May 2011, byCette 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. -
Taille des images et des logos définissables
9 February 2011, byDans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)
On other websites (3859)
-
Why when creating a video file from images using ffmpeg when playing the video file the quality is bad and the video is running too fast?
27 April 2016, by Daniel Voitpublic void Start(string pathFileName, int BitmapRate)
{
try
{
string outPath = pathFileName;
p = new NamedPipeServerStream(pipename, PipeDirection.Out, 1, PipeTransmissionMode.Byte);
ProcessStartInfo psi = new ProcessStartInfo();
psi.WindowStyle = ProcessWindowStyle.Hidden;
psi.UseShellExecute = false;
psi.CreateNoWindow = false;
psi.FileName = ffmpegFileName;
psi.WorkingDirectory = workingDirectory;
psi.Arguments = @"-f rawvideo -pix_fmt bgra -video_size 1920x1080 -i \\.\pipe\mytestpipe -c:v libx264 -crf 20 -r " + BitmapRate + " " + outPath;
//@"-f rawvideo -pix_fmt bgra -video_size 1920x1080 -i \\.\pipe\mytestpipe -c:v mpeg2video -crf 20 -r " + BitmapRate + " " + outPath;
process = Process.Start(psi);
process.EnableRaisingEvents = false;
psi.RedirectStandardError = true;
p.WaitForConnection();
}
catch (Exception err)
{
Logger.Write("Exception Error: " + err.ToString());
}
}I tried to use either the first or second line.
BitmapRate is set to 25
I tried to change both 20 to 10 and also the BitmapRate to 10 or to 17. but the video on hard disk when playing it it’s only 3-4 seconds bad quality.
I see all the images but too fast it’s like running I forward mode.Each file size is 8MB on hard disk.
55 Bitmap files.
The video file is 1072 KBTried to google but I didn’t find any googd example to fix it.
It’s not that it’s not creating the video file it does but with bad quality and running too fast.It’s strange why the created video file is so small if every file is 8MB and why so bad quality.
The video
-
Add Masking Video between 2 Video with FFMPEG [closed]
26 December 2019, by Mansi Joshicurrently working on FFMPEG. i have to Merge Video with Masking Video.Masking Video is nothing but Transition effect with black & White. i have to put this Masking video between 2 videos.
Like end of first video & starting of another video using FFMPEG androidanyone idea about how to achieve it.
-
Video Comparison Using Java - Video similarity [on hold]
23 November 2013, by Emily WebbIs there approach to compare 2 videos and check are they different versions of the same video...
Here by different version I meant that we can create two same videos with different resolutions or one of the video can be a large video and the other one can be a portion of it.But we should recognize both videos as same video in this scenario.
Is there any java libraries to attain this ? Or is there any approaches to achieve this?