Recherche avancée

Médias (0)

Mot : - Tags -/page unique

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (93)

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (5258)

  • H.264 - Identify Access Units of an image

    7 décembre 2017, par ivan_filho

    I need to parse a H.264 stream to collect only NAL’s needed to form a complete image, of only one frame. I’m reading the H.264 standard, but it’s confuse and hard to read. I made some experiments but, did not worked. For example, i extracted an access unit with primary_pic_type == 0 containing only slice_type == 7 (I-Slice), it should give me a frame, but i tried to extract from ffmpeg, it did not work. But, when i append the next access_unit, containing only slice_type == 5 (P-Slice) it worked. Maybe i need to extract POC information, but i think not, because i only need extract one frame, but i’m not sure. Someone have some tip of how get only NAL’s i need to form one complete image ?

  • Set thumbnail image of Mp4 video using ffmpeg command line

    7 avril 2014, par Karanbir Singh

    I am making application which includes setting of video thumbnail to some desired image. I know it can be done using ffmpeg.

    I tried following ffmpeg command but it works only on some devices

    ffmpeg -i Video.mp4 -i Image.png -acodec copy -vcodec copy -map 0 -map 1:0 outVideo.mp4

  • Overlay image on video in ffmpeg for android studio

    31 mars 2021, par Vrushabh Dhameliya

    When i add image on video but my image cut off right side in ffmpeg android studio so how to give image width ?

    


    [1] : https://i.stack.imgur.com/Y21Si.jpg

    


    below is my command :

    


      

    1. String command = "-i '" + uri.toString() + "'"
+ " -i '" + layer.getAbsolutePath() + "'"
+ " -filter_complex "[0:v][1:v]overlay="+getX+" :"+getY+"[outVideo],[0:a]volume=1 :[audio0]"
-map [outVideo] -map [audio0]"
+ " '"
+ mDestinationPath + "'" ;
    2.