Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (86)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La 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 (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (8869)

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

  • Android component to play video

    1er juillet 2016, par Kalivarapu

    I have tried to play different formats and codecs in android (4.4) webview and videoview and found the following for API level 19 :

    1. videoview plays mp4 of some codecs, 3gp, flv but fails to play few mp4 codecs and mkv.

    2. webview plays mp4 of all codecs, but fails to play video of any other format.

    Vexed with the inconsistency in android components, what can be done to universally support all formats in any one or combination of components in android ?

    Can I use external libraries to convert in runtime or abstract or bypass the complication of format/cedecs ?

    P.S The question strictly pertains to API level 19, which is Android 4.4