Recherche avancée

Médias (91)

Autres articles (92)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (6210)

  • M3U8. Convert all parts to mp4 [closed]

    5 juin 2020, par Zikrulloh Tolibjonov

    My name is Zikrullah. I have the m3u8 file of the serial. 1 m3u8 file contains all parts of the series and all audio languages for the player. The parts in it were saved in ts format for 10 seconds (as far as I understand). When I opened the m3u8 file, it contained a link to other m3u8 files. If I'm not mistaken, these are separate m3u8s for audio languages. but all m3u8 and ts files related to the video are on a other server. I need to upload all the files to my server while keeping them all in order. Of course using php. I'm sorry if I made a mistake. I don't know English well, but I tried :)

    


  • ffmpeg dshow command is listing device name different from actual device name

    20 octobre 2015, par Somanshu

    i have used the command:ffmpeg -f dshow -list_devices true -i dummy
    to list the devices.
    But if device name is in language other than english then device name shown by ffmpeg and actual differ.

    How can i solve this mismatch problem.

    This image shows the device name in spanish

    This image shows the device name as read by ffmpeg

  • How to get success info from ffmpeg on C# ?

    13 mars 2014, par user2989391

    I using ffmpeg on C#, my argument worked fine but i don't know get success handle..
    Sorry for my bad English.
    Thank you for help.

       ProcessStartInfo psi = new ProcessStartInfo("bin\\ffmpeg.exe");
       Process proc = Process.Start(psi);
       psi.UseShellExecute = false;
       psi.CreateNoWindow = true;
       psi.Arguments = " My argument ";
       psi.RedirectStandardError = true;
       psi.WindowStyle = ProcessWindowStyle.Hidden;
       proc = Process.Start(psi);
       StringBuilder sb = new StringBuilder();
       StreamReader outputReader = proc.StandardOutput;
       while (!(proc.StandardOutput.EndOfStream)) {
           sb.AppendLine(proc.StandardOutput.ReadLine());
       }
       proc.WaitForExit();
       proc.Close();
       psi = null;