Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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

Autres articles (112)

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

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (9817)

  • x264 rate control modes

    19 septembre 2013, par xkfz007

    Recently I am reading the x264 source codes. Mostly, I concern the RC part. And I am confused about the parameters —bitrate and —vbv-maxrate. When bitrate is set, the CBR mode is used in frame level. If you want to start the MB level RC, the parameters bitrate, vbv-maxrate and vbv-bufsize should be set. But I don't know the relationship between bitrate and vbv-maxrate. What is the criterion of the real encoding result when bitrate and vbv-maxrate are both set ?
    And what is the recommended value for bitrate ? Equals to vbv-maxrate ?
    Also what is the recommended value for vbv-bufsize ? Half of vbv-maxrate ?
    Please give me some advice.

  • ffmpeg : concat two clips vertically, but upper one should be bigger

    19 juillet 2022, par Rittari771

    I have two 1920x1080 clips. I know how to concat two clips vertically (the clips share equally the space half, 50% upper clip - 50% bottom) => what would i need to do to get a ratio like 65% 35% ?
So the upper clip would take 65% of the screen space vertically, then the lower bottom clip would fill the rest 35% ?

    


    this is my current code to concat the clips vertically.

    


    ffmpeg -i clip_top.mp4 -i clip_bottom.mp4 -filter_complex "vstack=inputs=2" -vsync 2 final_clip.mp4


    


    here is the same explanation, but with a picture : enter image description here

    


  • streaming from generated images using ffmpeg / vlc / live555

    10 octobre 2019, par Pavel

    For the life of me I cannot get this to work correctly.

    The idea is : simple python script that loads an image from a url (different every time) and passes it to ffmpeg, eg :

    python fetch.py | ffmpeg -f image2pipe -framerate 1 -i pipe:.jpg -c:a copy -c:v libx264 -r 5 -b 500000 -s 600x480 ../live555/out.264

    What I really need is to make this work with some sort of rtsp server.
    So far a sort of working approach was to use live555MediaServer that is running on the same server and pretty much streams that out.264 file.

    Why I don’t like this approach :

    a. connecting to rtsp stream using vlc works but it’s very unstable (video stops) and there are not errors or anything, if I click play it resumes.
    debug :
    live555 debug: RTSP track Close, 0 track remaining
    It seems like it just streams whatever the file has at that moment of time and does not do it continuously.

    b. I don’t like the "file" approach. Eg. ffmpeg is creating an out.264 file which grows. Ideally it would simply send the stream to the RTSP server via some protocol.

    c. live555MediaServer just sucks

    It looks like there is a way to run vlc server on my server as well, but I cannot figure out how to make ffmpeg feed the vlc server ?

    Any suggestions ?