
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (66)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
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 -
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 (10949)
-
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 ?