
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (100)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (15118)
-
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();
}
}
} -
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.
-
connection timeout between client and ffserver
28 août 2014, par MohammadhzpI have a directory which contain some files,I loop around this files and stream them using ffmpeg to ffserver,the problem is when song is over,the client stop receiving the stream.VLC and jwplayer have this problem-which I tested-(although I can fix this problem in jwplayer by adding repeat : true option but I don’t think it’s such a good idea).
what I need is an option or some trick in ffserver which keep connection alive(at least for a while) so that if a song is over,the next song start automatically(it take 1 second to switch songs),maybe ffserver have a timeout option ?