Recherche avancée

Médias (91)

Autres articles (101)

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

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (7421)

  • 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;
  • formula to calculate video dimensions for target aspect ratio

    23 avril 2015, par Nevoxx

    i currently building an application that converts videos to a specific dimension under consideration of the target aspect ration.

    the target resolution must always be 1280x720, i want to fit the uploaded video in this size using black bars.

    can anyone point out a formula to calculate the target video dimensions without changing it’s aspect ratio ? if the target with is smaller then 1280x720 i’ll add the missing pixels as black bars.

    i’m using ffmpeg with the "-vf scale=1280x720,pad=?:?:black" command

    (sorry if my english is not that great)