Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (50)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • 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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (5757)

  • Anomalie #2542 : forum interne

    8 mars 2012, par Ben .

    confirmé : forum.log ::::::::::::: : Mar 08 16:50:23 127.0.0.1 (pid 5299) :Pri:ERREUR : /home/ben/www/spip-3.0/extensions/forum/inc/forum_insert.php_59Erreur insertion forum sur objet=’’, id_objet=

  • colored TV-Noise with windows

    8 janvier 2024, par LookAndSee

    I have some question to the colored noise at image 2 of the following thread :

    


    Simulating TV noise

    


      

    • how can i get this in windows ? I like a random pattern consisting of red, green, blue, white and black points, like 255:0:0, 0:255:0, 0:0:255, 255:255:0, 0:0:0 and 255:255:255 - no pink, no orange, no cyan ... at the first step.
    • 


    


    but random in all 3 places always delievers (with ceil, floor or round) whole black, or whole white or bw-noise :-(
does it mean, the random(1) per point is 3 times the same in one computing-cycle ?

    


    Any suggestion ?

    


    This is what i tried :

    


    ffmpeg -y -f lavfi -i nullsrc=s=1280x720 -filter_complex "geq=r=(round(random(1)))*255:g=(round(random(1)))*255:b=(round(random(1)))*255;aevalsrc=-2+random(0)" -t 5 output.mkv


    


  • ffmpeg/avconv force scaled output to be divisible by 2 [migrated]

    25 mars 2013, par J V

    I record my desktop with avconv (aka ffmpeg) and then scale it to 720p.

    I recently added to my script so they can select a window with xwininfo and it will record that one specifically.

    However, if the output format isn't divisible by 2 the encoder freaks out and I don't get my video.

    Is there a way to fix this inside ffmpeg so I don't have to do a bunch of manual math in bash to set the scale values ?

    Is it possible to have the scale filter subtract/add one to width/height if they're uneven ? (round ?)

    Is it possible to apply another filter after the original scale that could accomplish this ? (This would round videos that have an uneven input size and no scaling)

    #!/bin/bash
    avconv \
    -f x11grab -r $fps -s $capturesize -i :0.0$offset \
    -vcodec libx264 \
    -vf scale=-1:720 \
    -pre:v lossless_ultrafast \
    -threads 4 \
    -y $@

    Some old mailing lists suggest a round() function you can use in the filter but I can't seem to get the syntax right. If it works a scale=round(iw,2):round(ih,2) filter applied at the end would solve all my problems at once. iw and ih don't seem to work.