Recherche avancée

Médias (91)

Autres articles (85)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (13769)

  • Inject EditBox on OpenGL video stream

    15 juillet 2015, par Marco Reisacher

    I wanted to overlay/inject a EditBox over my OpenGL Video window.
    My Goal is a kind of Video text Insertion.
    I am recording my Video using ffmpeg, the Input source is a Blackmagic Decklink Video Card (unfortunately Blackmagic doesn’t give you a lot of insight into the OpenGL part -> most of it is done behind the curtain in the API)
    In my Handler of the PreviewWindow I’ve got a method called "DrawFrame" that is responsible to draw the Images into the preview box of my application.

    I want to inject the TextBox (transparently) into that, because I am later reading the OpenGL stream into a buffer and then capture that off to a file using ffmpeg.

    Is there any possibility to do something like that ?

  • Revision 1c7b1f9aec : Update to dynamic resize logic for 1pass CBR. Only do the check for resizing if

    25 juin 2015, par Marco

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



    Update to dynamic resize logic for 1pass CBR.

    Only do the check for resizing if the feature is selected
    (i.e., resize_mode = RESIZE_DYNAMIC).

    And modify condition for checking to be resize_count >= window,
    (since framerate can change).

    Change-Id : Idceb4e50956bb965a1492b4993b0dcb393c9be4d

  • How can I capture video from different windows using ffmpeg ?

    13 janvier 2016, par RdB

    I have a proprietary IPTV player, and my goal is to capture a video from this player’s several windows simultaneously. I’m able to do that with ffmpeg and VLC (for instance) using vlc windows’ titles like this :

    ffmpeg -f gdigrab -framerate 30 -i title="german.avi - VLC media player" -b:v 3M  germ.flv


    ffmpeg -f gdigrab -framerate 30 -i title="2015-05-10 Sportscene.mkv - VLC media player" -b:v 3M  scot.flv

    and so on.

    But when I run 2 or more instances of that proprietary player, all of its windows’ titles are similar. So the question is how can I specify which window’s video in which file to record ?