Recherche avancée

Médias (91)

Autres articles (82)

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

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (12775)

  • Revision dc08b20405 : Add comments for control VP9E_SET_TUNE_CONTENT Change-Id : If1fb5d9f1545cb9753ee

    14 janvier 2015, par Yaowu Xu

    Changed Paths :
     Modify /vpx/vp8cx.h



    Add comments for control VP9E_SET_TUNE_CONTENT

    Change-Id : If1fb5d9f1545cb9753eeda22e699b1ab778452b4

  • VB.NET : How to maintain main form control during loops in other sub ?

    5 février 2015, par Zed Machine

    I have a program with only one form.
    By pressing a button it starts a ffmpeg conversion.

    In the main form, in textboxes, ffmpeg stats are outputted. This is possible by taking StandardError output from ffmpeg.

    Public Sub Console()
           Dim Process As New Process

           Process.StartInfo.UseShellExecute = False
           Process.StartInfo.RedirectStandardError = True
           Process.StartInfo.RedirectStandardOutput = True
           Process.StartInfo.FileName = current_ffmpeg_path
           Process.StartInfo.Arguments = input_params
           Process.StartInfo.CreateNoWindow = True
           Process.Start()

           Dim ffmpeg_stats_output As System.IO.StreamReader = Process.StandardError

           Do While Process.HasExited = False
           [update all main form textboxes by taking input string from ffmpeg and elaborate it]
           Loop
    End Sub

    The problem is that while this loop is executed the textboxes and progress bar are updated but the main form cannot be modified. There is in fact no control at all by user. So if I want to make a button to stop/pause ffmpeg in main form this cannot be pressed as anything else on the main form.

    there is a way to maintain loops inside other Sub without loose control of main form while they’re running ?

    I tried to fix it by calling another dialog form with textboxes and progress bar. But even this form loose completely control until the process is finished.

    To send pause/stop conversion to ffmpeg (that runs without a window) is it correct use :

    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
    SendKeys.Send("q")
    SendKeys.Send("^s")
    End Sub

    or must be specified that this key is sent to the current running Process ?

  • PJSIP with SDL and FFMPEG for iPhone [closed]

    14 décembre 2012, par John Qualis

    Has anyone been able to compile PJSIP with SDL and FFMPEG support for iOS ?