Recherche avancée

Médias (91)

Autres articles (74)

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

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

  • ffmpeg how to place still image over full vstack ?

    21 août 2020, par mtareiling

    Im trying to build a simple video editor and im using ffmpeg on the background. I want as much different filters/properties in one command but im not succeeding in placing a still image before everything else (first frame). I want a vstack after the image has shown in a video.

    



    I tried a lot of different commands etc. and most of the time the video renders but the image included in the vstack, or the video doesn't start for the amount of seconds I want the still image to be shown.

    



    ffmpeg -hide_banner -i "header.jpg" -i "video.mp4" -i "footer" -i "still-image.jpg" -filter_complex "[1][3]overlay=0:0:enable='between(t,0,4)';vstack=inputs=3" -pix_fmt yuv420p -c:a copy -y output.mp4

    



    Most of the time I don't get an error. It just isn't doing what's expected. The above command is one of the many I tried but is basically what I want. Can someone help please ?

    


  • ffmpeg parameters to cut video files with Full Re-Encoding

    24 septembre 2019, par How to

    The following code will be used to trim multiple video files (with different audio or video codecs, or containers etc...).
    The purpose of this code is to cut a video file with ffmpeg as the resulting output (cut) file to contain the same video, audio codecs as the original as using method FULL-RENCODING.
    My question is whether there is any error in the current parameters ?

    Example of used ffmpeg code :

    ffmpeg -i Sample.vob -ss 00:00:10.000 -strict -2 -t 00:00:10.000 -map 0:v:0 -map 0:a? -acodec copy -map 0:s? -scodec copy SSSS.vob

    or

    ffmpeg -i Sample.mp4 -ss 00:00:10.000 -strict -2 -t 00:00:10.000 -map 0:v:0 -map 0:a? -acodec copy -map 0:s? -scodec copy SSSS.mp4

    or

    ffmpeg -i Sample.mkv -ss 00:00:10.000 -strict -2 -t 00:00:10.000 -map 0:v:0 -map 0:a? -acodec copy -map 0:s? -scodec copy SSSS.mkv

    and others...

  • avcodec/cfhd : Check that cropped size is smaller than full

    29 août 2019, par Michael Niedermayer
    avcodec/cfhd : Check that cropped size is smaller than full
    

    Fixes : signed integer overflow : 57342 * 120830 cannot be represented in type 'int'
    Fixes : 16426/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_CFHD_fuzzer-5758744817827840

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg

    • [DH] libavcodec/cfhd.c