Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (61)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (6422)

  • Show progress of a video conversion with FFMpeg

    27 février 2015, par ChrisCreateBoss

    I’m using C# WinForms to make a video converter, I’m using NReco.VideoConverter library. It has an EventHandler named ConvertProgress but I have never used EventHandlers, I was searching for some information on internet, but I still don’t know how to apply it to my application.

    I tried this :

    public static event EventHandler<convertprogresseventargs> _getPercent;
    //...
    _getPercent += ???
    progressBar1.Value = ??
    </convertprogresseventargs>

    I’m stuck there, and I don’t know what to do. Can someone help me ?? Thanks in advance.

  • Show progress of a video conversion with FFMpeg

    23 novembre 2017, par ChrisCreateBoss

    I’m using C# WinForms to make a video converter, I’m using NReco.VideoConverter library. It has an EventHandler named ConvertProgress but I have never used EventHandlers, I was searching for some information on internet, but I still don’t know how to apply it to my application.

    I tried this :

    public static event EventHandler<convertprogresseventargs> _getPercent;
    //...
    _getPercent += ???
    progressBar1.Value = ??
    </convertprogresseventargs>

    I’m stuck there, and I don’t know what to do. Can someone help me ?? Thanks in advance.

  • How to join two videos containing audio as well using Python ? [on hold]

    5 janvier 2018, par Sarthak Agarwal

    I have to join two videos (contains audio as well). The second video has to be appended to the first after some adjustment (ie. some movement in XY axis, so that the second video appears to seamlessly/continuously join the first one). OpenCV is essentially a computer vision library, and does not support audio. I have to use python for that. How to go about it ? Please help me out here ? Thanks in advance.