Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (109)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (15063)

  • Error using pipe ffmpeg

    10 décembre 2016, par user3381786

    i 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.

  • Process not completing ?

    6 mai 2014, par Abe Miessler

    I 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 the Output 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 ?

  • extract image while recoring video using ffmpeg

    9 septembre 2013, par petre

    I 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 &