Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (69)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (6557)

  • How to pass the output of one program (ffmpeg) to python script ?

    8 septembre 2017, par Victor Odouard

    What I would like to do is this :

    ffmpeg -i udp://224.10.10.10:15004 -qscale:v 2 sttest%04d.jpg

    And then pass the output image paths of this to a python script, which individually takes in the images and manipulates them, as ffmpeg is running (eventually I will use ffmpy to call ffmpeg rather than using the command line tool, but for now testing purposes, I’m starting here).

    I suppose a way to do this would be to look into the directory of the ffmpeg output every time I’ve processed an image to see if there is a new one, and then load that into python (using OpenCV)—and then waiting a certain time interval if there are no new images to process.

    But is there a better way of doing this, like sending the paths of the images directly to some sort of queue which the python script can then process one by one ?

  • Revision b0c146eea9 : [svc] 1. Add two pass RC options in vp9_spatial_scalable_encoder. 2. Add r

    28 février 2014, par Minghai Shang

    Changed Paths :
     Modify /examples.mk


     Modify /examples/vp9_spatial_scalable_encoder.c


     Modify /vpx/exports_enc


     Modify /vpx/src/svc_encodeframe.c


     Modify /vpx/svc_context.h



    [svc] 1. Add two pass RC options in vp9_spatial_scalable_encoder.
    2. Add read/write for RC stats file
    The two pass RC for svc does not work yet. This is just the first
    step. We need further development to make it working.
    Change-Id : I8ef0e177dff0b5ed3c97a916beea5123717cc6f2

  • How to pass additional HTTP header parameters with avformat_open_input() ?

    14 juillet 2014, par 4ntoine

    I’m using android port of ffmpeg and i need to pass additional HTTP header parameters to the server to identify the client.

    How can i do it ?

    I can see avformat_open_input(.. AVDictionary **options ..) parameter (documentation).
    Can i use it ?