Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (79)

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

  • FFMPEG to send RTSP encoded stream C++

    15 avril 2020, par Godspped

    I am trying to figure out a way to take an encoded H264 image that I have created in FFMEG and send it out via RTSP using FFMPEG, is there some sample code or a tutorial out there that shows how to do this. I tried searching the web, but there is nothing that I could find out there.

    



    Any help is greatly appreciated. Thanks in advance.

    


  • FFMPEG to send RTSP encoded stream C++

    11 décembre 2016, par Godspped

    I am trying to figure out a way to take an encoded H264 image that I have created in FFMEG and send it out via RTSP using FFMPEG, is there some sample code or a tutorial out there that shows how to do this. I tried searching the web, but there is nothing that I could find out there.

    Any help is greatly appreciated. Thanks in advance.

  • Zooming animation in FFMPEG

    2 novembre 2015, par dmcontador

    I need to make a zooming animation for a video input.

    Making a panning animation is possible with the crop filter with something like this :

    "crop=320:240:max(0\\,min(iw-ow\\,n)):0"

    Where the first two parameters, width and height, are fixed, and the second two parameters, accept frame number n or timestamp t as expression parameters.

    But width and height are evaluated only once (and cannot use n or t), so I cannot crop a size in function of time and then apply a scale filter to the original size.

    I know I can :

    • Change the filter after pulling each frame from the buffersink (I’m not in the command line, I’m using the libraries in my software). I’m doing that already, but no for every frame, only by user request in an online application.
    • Use geq filter to "apply a generic equation to each frame".

    Both approaches seem expensive. Is there another filter or approach I could use ?

    Note that I’m using zeranoe FFMPEG libraries in Windows. I’d rather not develop my own filters or modify FFMPEG source.