Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (89)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (16462)

  • how to play audio files using ffmpeg

    6 juin 2012, par user1426122

    I'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 Ch3shire

    I’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 ?

  • How to play and record Audio using ffmpeg in cmd ?

    7 juin 2018, par sarabjot singh

    I want to play and record audio from a device (composite source). I’m able to do that individually but how to do simultaneously.