Recherche avancée

Médias (1)

Mot : - Tags -/framasoft

Autres articles (72)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • Revision f498d92ff4 : Ignore missing newline message git diff adds the following line to diffs : \ No

    3 février 2014, par Johann

    Changed Paths :
     Modify /tools/diff.py



    Ignore missing newline message

    git diff adds the following line to diffs :
    \ No newline at end of file

    which interferes with diff.py parsing. diff.py only looks for '+', '-'
    and ' ' at the beginning of the line.

    Issue seen on https://gerrit.chromium.org/gerrit/68611

    Change-Id : I0d7b4485c470e0b409f2c9cddde6c9aceba0152e

  • How do I execute an ffmpeg cmd to command line using C# ?

    24 juin 2019, par TonysAlwayslost

    I am having an issuing trying to get a form app on visual studio 19 to execute a cmd on command line for converting a video from mp4 to avi.
    I am using ffmpeg for this but everytime I compile it wont pick anything up.

    I have ran the argument through command line and it converts the video just fine. The path as far as I am aware is correct so I am not sure why the compiler wont pick up on any files.

    private void Button1_Click(object sender, EventArgs e)
       {
           string cmdString =  "c:\ffmpeg\bin";
           ProcessStartInfo startInfo = new ProcessStartInfo();
           startInfo.CreateNoWindow = false;
           startInfo.UseShellExecute = false;
           startInfo.FileName = "ffmpeg.exe";
           startInfo.WindowStyle = ProcessWindowStyle.Hidden;
           startInfo.Arguments =  cmdString + $"-i shatner.mp4 shatner.avi";


           using (Process exeProcess = Process.Start(startInfo))
           {
               exeProcess.WaitForExit();
           }
       }
    }

    }

    The error I am getting :
    "The system cannot find the specified file"

    Also I would have put a try catch block around the Process.Start but it doesnt matter since it is still throwing the exception.

  • Revision 2472f125c1 : Fix a bug The line was accidently removed in 4dbad63a7. Change-Id : Ic1e18f209c

    20 décembre 2013, par Yaowu Xu

    Changed Paths :
     Modify /vp9/encoder/vp9_onyx_if.c



    Fix a bug

    The line was accidently removed in 4dbad63a7.

    Change-Id : Ic1e18f209cead95cecc684f952ae667271b58a97