
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (66)
-
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 -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (9321)
-
ffmpeg not creating a name for image after thumbnail generation C#
15 août 2012, par LynxI just learn how to use ASP.NET and learn C# last month and now I am having a problem.
I am experimenting on how to generate thumbnail using ffmpeg in C#. The thumbnail successfully generated in intended folder but there is no name for the image file.
what I want to do is to create thumbnail and automatically named the jpg file same as the video file.I can't figure out what is wrong with my code ; in fact, I don't even understand the code completely as I copied the code from internet and change the folder path of the files.
private void generateThumbnails(string filename)
{
string[] setThum = filename.Split('.');
string thumb_path = setThum[0] + ".jpg";
filename = "C:\\ramky\\al.avi";
string thumbpath, thumbname;//, videopath;
string thumbargs, inputfile;
thumbpath = "C:\\ramky\\";
thumbname = thumbpath + thumb_path;
inputfile = filename;
thumbargs = "-i \"" + inputfile + "\" -s 240*150 -ss 1 -vframes 1 -f image2 \"" + thumbname + "\"";
Process thumbproc = new Process();
thumbproc = new Process();
thumbproc.StartInfo.FileName = "C:\\ffmpeg\\ffmpeg.exe";
thumbproc.StartInfo.Arguments = thumbargs;
thumbproc.StartInfo.UseShellExecute = false;
thumbproc.StartInfo.CreateNoWindow = true;
thumbproc.StartInfo.RedirectStandardOutput = false;
try
{
thumbproc.Start();
if (thumbproc != null)
{
thumbproc.Close();
}
}
}Your help will be really appreciated.
-
ffmpeg not creating a name for image after thumbnail generation
15 août 2012, par LynxI just learn how to use ASP.NET and learn C# last month and now I am having a problem.
I am experimenting on how to generate thumbnail using ffmpeg in C#. The thumbnail successfully generated in intended folder but there is no name for the image file.
what I want to do is to create thumbnail and automatically named the jpg file same as the video file.I can't figure out what is wrong with my code ; in fact, I don't understand the code completely as I copied the code from internet and only change the folder path of the files.
private void generateThumbnails(string filename)
{
string[] setThum = filename.Split('.');
string thumb_path = setThum[0] + ".jpg";
filename = "C:\\ramky\\al.avi";
string thumbpath, thumbname;//, videopath;
string thumbargs, inputfile;
thumbpath = "C:\\ramky\\";
thumbname = thumbpath + thumb_path;
inputfile = filename;
thumbargs = "-i \"" + inputfile + "\" -s 240*150 -ss 1 -vframes 1 -f image2 \"" + thumbname + "\"";
Process thumbproc = new Process();
thumbproc = new Process();
thumbproc.StartInfo.FileName = "C:\\ffmpeg\\ffmpeg.exe";
thumbproc.StartInfo.Arguments = thumbargs;
thumbproc.StartInfo.UseShellExecute = false;
thumbproc.StartInfo.CreateNoWindow = true;
thumbproc.StartInfo.RedirectStandardOutput = false;
try
{
thumbproc.Start();
if (thumbproc != null)
{
thumbproc.Close();
}
}
} -
Faster Thumbnail/Image Extraction from Video using FFMPEG ?
27 août 2012, par mirroredAbstractionI am using this command to extract a series of images from a video to express them as a visual time-frame of the video.
ffmpeg -i inputfile.mp4 -r 1 -t 12 image-%d.jpeg
Most of my videos are in mp4 format. I am able to extract the images successfully but the time taken for extraction is too long.
Is there any way I could reduce the time for image extraction ?
EDIT : It is taking me 60 secs to get 8 thumbnails from a 15 sec long video encoded in MP4 format, I am doing this operation on my Galaxy Nexus(Android Phone) is there any way to improve the speed of operation, ideally I want it be less than 10secs.