Recherche avancée

Médias (1)

Mot : - Tags -/portrait

Autres articles (60)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

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

Sur d’autres sites (10202)

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