Recherche avancée

Médias (91)

Autres articles (34)

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

  • How to set the value of an arbitrary pixel in ffmpeg ?

    14 mai 2017, par Neb

    I want to modify the rgb value of each pixel inside ffmpeg.

    I need to implement the following function :

    A[x + expr_1][y] = expr_2

    where x and y are the current sampled pixel, A is the input frame whose pixel need to be modified and expr_1, expr_2 are two independent expressions.

    I tried using the geq filter but it seems there no way to set the value of a pixel other than from that currently sampled. For istance, the function p(x,y) only returns the value of the pixel at the specified location, but doesn’t allow to set a value for that pixel. In other word, ffmpeg seems allowing only something like :

    A[x][y] = expr

    Is there a way to tell ffmpeg to set the value of a specific pixel ?

    Thanks for your time.

  • Screenshot of the Nexus One from adb ?

    23 avril 2015, par Marcus

    My goal is to be able to type a one word command and get a screenshot from a rooted Nexus One attached by USB.

    So far, I can get the framebuffer which I believe is a 32bit xRGB888 raw image by pulling it like this :

    adb pull /dev/graphics/fb0 fb0

    From there though, I’m having a hard time getting it converted to a png. I’m trying with ffmpeg like this :

    ffmpeg -vframes 1 -vcodec rawvideo -f rawvideo -pix_fmt rgb8888 -s 480x800 -i fb0 -f image2 -vcodec png image.png

    That creates a lovely purple image that has parts that vaguely resemble the screen, but it’s by no means a clean screenshot.

  • Find bytes range of webm video for specified segment

    21 mai 2024, par M2sh

    I have a Video in webm format (like video.webm the duration is 60 seconds)
    
I want to get specified segment of video (i.e split video) with http header range (Range : 100-200).
    
In another word :
    
I want to get a section of video (e.g. from second 4 to 12) but I don't want to use any converter like ffmpeg. I want to send http request to server and get specified range of webm file.

    


    Can I use this method (http range header) ?

    


    Thanks