Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (55)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (8255)

  • FFMPEG - changing pixel format from 24-bit RGB to 8-bit Grayscale does not change file size

    26 septembre 2018, par Minjun Seong

    I am using the avlib* libraries and currently using the sws_getContext function to change pixel format from RGB (AV_PIX_FMT_RGB24) to grayscale (AV_PIX_FMT_GRAY8). The expected behavior should have been that the output file size should have decreased by 3 times, but it stayed the same. Furthermore, when I checked on Media-Coder to see the format, the video format was still RGB. Any ideas on why the file size didn’t change and why the file format is still RGB ?

    Note : the video DID change to black and white as expected.

  • Is it possible to get the size of each frame in a video using ffmpeg ?

    5 juin 2014, par Missing Ashleys

    I want to get the size of each frame in a video using ffmpeg. (windows build). How to do this ?

  • how to fix ffmpeg-python outputting abnormal size after combining audio and video file

    5 septembre 2022, par prince david

    I am trying to combine audio and video using ffmpeg-python. my video file is 40mb and my audio file is 5mb but when i combine them i am getting 90mb which is abnormal. i was expecting the output file to be the size of the video file + the size of the audio file. My question is, how can I maintain the size of the output file to be equal to the size of the input video and audio file ?

    


    import ffmpeg

    


    input_video = ffmpeg.input('video.mp4)
input_audio = ffmpeg.input('audio.mp4')

    


    ffmpeg.concat(input_video, input_audio, v=1, a=1).output('finished_video.mp4').run()