Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (40)

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

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

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

  • avcodec/videotoolbox : add support for full range pixel formats

    13 avril 2019, par Akemi
    avcodec/videotoolbox : add support for full range pixel formats
    

    Signed-off-by : Aman Gupta <aman@tmm1.net>

    • [DH] fftools/ffmpeg_videotoolbox.c
    • [DH] libavcodec/videotoolbox.c
    • [DH] libavutil/hwcontext_videotoolbox.c
    • [DH] libavutil/hwcontext_videotoolbox.h
  • 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
  • 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...