Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (108)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • vmr9 surface with ffmpeg codec

    7 janvier 2013, par Vipul

    I am a multimedia newbie, so pardon me if I am asking a stupid question.

    I want to use VMR9 surface while using the codec's from FFMPEG library.
    So far my search result tells that VMR9 has it's own codec. And I am not able to find any VMR9 related API change the codec to use to one of those provided by FFMPEG library.

    Can anyone tell if there is some way to do that ?
    Maybe an exaplme will help me understand better.

    Thanks

  • How to create video with images and different time interval using ffmpeg

    8 janvier 2013, par XCoder

    It seems duplicate :
    How to create video with images and different time interval ?
    But it ain't duplicate since the author of the above question has framed the wrong title because the images are displayed for fixed time-interval.

    What I want to do is this

    1. Image 1 : 5 seconds

    2. Image 2-5 : 10 seconds

    3. Image 6 : 4 seconds

    Please let me know how can I achieve this using ffmpeg. I tried googling but found nothing as such.

  • How to save ffmpeg stream with datetime

    18 janvier 2013, par user1800256

    I would like to write an output format from a ffmpeg encode line to save the stream in a SD card with date and hour.

    To simplify the question I write the following (just ignore the extras) :

    import subprocess, sus, os, datetime, time
    from subprocess import Popen, PIPE

    def call_command(command):
       subprocess.Popen(command.split('  '))

    call_command('ffmpeg -f video4linux2 -y -s qvga -r 24 -i /dev/video0 \
                 -vcodec mpeg2video /home/pi/webcam_+%Y/%m/%d_at_%H:%M:%S.mpg')

    I also tried another solutions like define firstly the filename and call it from the ffmpeg line but it doesen't work.