Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (51)

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

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (7603)

  • Whats the difference between the output of mencoder and libx264 ?

    30 septembre 2013, par عبدالمؤمن كاظم

    i want to know the difference between video output of these two encoders (mencoder and libx264).
    i guess they're not, since the video information of the codec have different names.
    thanks in advance.

  • Use WebRTC/GetUserMedia stream as input for FFMPEG

    10 février 2020, par ApplowPi

    I’m recording my screen with gerUserMedia and get my video & audio stream. I’m then using WebRTC to send/receive this stream on another device. Is there any way I can then use this incoming webrtc stream as an input for ffmpeg by converting it somehow ?

    Everything I’m working with is in javascript.

    Thanks in advance.

  • What's the point of passing address of pointer to function that needs pointer to pointer ?

    16 août 2019, par Guerlando OCs

    I’m reading an example of ffmpeg decoding and it has the address of a pointer being passed to a function :

    static AVBufferRef *hw_device_ctx = NULL;


    if ((err = av_hwdevice_ctx_create(&hw_device_ctx, type,
                                     NULL, NULL, 0)) < 0) {

    What’s the point of passing the address of a pointer as an argument ?

    I understand that when we pass the pointer itself, if the pointer has address 0x123456, then the function is going to be able to modify what’s the object that is in this address. But when I pass the address of a pointer, I’m passing the address of where this pointer number is allocated ?

    If I understood right, I’m passing the address of the variable that stores 0x123456 ? Why the function needs it ?

    Also, suppose that I want to store hw_device_ctx in a unique_ptr like this :

    std::unique_ptr<avbufferred> hw_pointer;
    </avbufferred>

    How can I pass it to av_hwdevice_ctx_create ? Because I get an error when I do

    av_hwdevice_ctx_create(&amp;hw_pointer.get(),...

    It says :

    expression must be an lvalue or a function designator