
Recherche avancée
Médias (21)
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (67)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (10742)
-
extract image while recoring video using ffmpeg
9 septembre 2013, par petreI can extract 320x240 jpg image while recording a 320x240 video stream using gstreamer. How can i do that using ffmpeg ? Gstreamer script is shown :
gst-launch-0.10 v4l2src device=/dev/video${i} ! videorate ! video/x-raw-yuv, width=320, \height=240, framerate=5/1 ! tee name=tp tp. ! queue ! videobalance saturation=0.0 ! textoverlay halign=left valign=top text="(c)PARK ON OM " shaded-background=true ! clockoverlay halign=right valign=top time-format="%D %T " text="Date:" shaded-background=true ! queue ! ffmpegcolorspace ! ffenc_mpeg4 ! avimux ! filesink location=$DIR/CAM${i}_${DTIME}.mp4 append=true tp. ! queue ! jpegenc ! multifilesink location=$DIR/webcam${i}.jpeg &
-
Process not completing ?
6 mai 2014, par Abe MiesslerI am using FFMPEG to convert some audio files. To do this I am using the code below :
using (Process process = new Process())
{
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.RedirectStandardError = true;
process.StartInfo.FileName = Path.GetDirectoryName(System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName) +
@"\bin\ffmpeg.exe";
process.StartInfo.Arguments = String.Format(@"-i {0} -f mp3 {1}", OrigFilePath, OrigFileFolder + "\\" + NewFileName);
process.StartInfo.UseShellExecute = false;
process.StartInfo.CreateNoWindow = true;
process.Start();
System.Diagnostics.EventLog.WriteEntry("ASP.NET 2.0.50727.0", "test... ");
string output = process.StandardOutput.ReadToEnd() + System.Environment.NewLine + process.StandardError.ReadToEnd();
System.Diagnostics.EventLog.WriteEntry("ASP.NET 2.0.50727.0", "Output from process: " + output);
process.WaitForExit();
System.Diagnostics.EventLog.WriteEntry("ASP.NET 2.0.50727.0", "After end... ");
return true;
}In my event log I see the
test...
log, but I never get to theOutput from process:
in the logs. It appears that the process is not completing. Has anyone else run into this problem ? Any idea of what is going on and how I can fix it ? -
Error using pipe ffmpeg
10 décembre 2016, par user3381786i am using ffmpeg to record video, but it doesn’t work..
byte[] texBytes = tex.EncodeToPNG();//get byte[]
proc = new System.Diagnostics.Process();
proc.StartInfo.FileName = "ffmpeg.exe";
proc.StartInfo.Arguments = " -y -r 30 -f rawvideo -codec rawvideo -s 512x512 -pixel_format rgba -i pipe:0 -vf \"transpose = 1\" -r 30 -threads 8 -c:v libx264 -preset slow -crf 18 -pix_fmt yuv420p test2.mp4";
proc.StartInfo.CreateNoWindow = true;
proc.StartInfo.UseShellExecute = false;
proc.StartInfo.RedirectStandardError = true;
proc.StartInfo.RedirectStandardInput = true;
proc.Start();
MemoryStream ms = new MemoryStream(texBytes);
ms.WriteTo(proc.StandardInput.BaseStream);
ms.Flush();
ms.Close();the output file "test2.mp4" is only 1KB. Any problems in my codes ?
thank you in advance.