
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 (79)
-
L’agrémenter visuellement
10 avril 2011MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté. -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
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
Sur d’autres sites (7718)
-
ffmpeg : Stream, record and play my webcam
12 avril 2013, par ChristophLSAI want to stream my webcam to a rtmp server. Also I want to record and save this to a local file (with better settings). This works and the command look like this :
ffmpeg -f video4linux2 -i /dev/video2 -f pulse -i default \
-r 20 -acodec copy -vcodec libx264 -threads 0 -s 720x480 recording-$(date +%d.%m.%Y-%H.%M.%S).mkv \
-acodec libmp3lame -ab 64k -ar 44100 -vcodec libx264 -vpre my_ffpreset -threads 0 -f flv -s 320x240 rtmp://foo/barNow I want to play my webcam to test the right angle, audio volume etc. What is the best way for doing this without a third (expensive) encoding ?
I could play the stream but the latency is to high. Maybe I could create a ffserver and play the stream. Is there an option to record and stream with only one encoding process ? Any other solutions ?
-
how to play audio files using ffmpeg
6 juin 2012, par user1426122I'm using ffmpeg to make a music player, i want to know the function to play the music and pause the music. The have searched several times about it but it, but didn't find a workable answer.
-
C# Play MPEG audio files
23 novembre 2017, par Ch3shireI’m looking for a way to play mpeg audio files in C#. With mp3 the case is simple :
System.Windows.Media.MediaPlayer player = new System.Windows.Media.MediaPlayer();
player.Open(new System.Uri(File));
player.Play();I’m looking for a way to play with similar simplicity the m4a or webm audio files. For now I’m desperate and I’m trying to make a workaround :
String path = Path.GetFullPath("./x.m4a");
Process process = new Process();
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
startInfo.FileName = "ffplay.exe";
startInfo.Arguments = "-vn -showmode 0 " + path;
process.StartInfo = startInfo;
process.StartInfo.UseShellExecute = false;
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
process.StartInfo.CreateNoWindow = true;
process.Start();For now I am able to play
x.m4a
file, but it doesn’t stop when I exit the file. Also I’m afraid I won’t have much control over the track flow. Is there any different method (with NuGet package for example) to play mpeg files ?