Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (44)

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

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

  • matroskaenc : write correct Display{Width, Height} in stereo encoding

    22 octobre 2014, par Vittorio Giovara
    matroskaenc : write correct DisplayWidth, Height in stereo encoding
    

    should be the raw amount of pixels (for example 3840x1080 for full HD side by
    side) and the DisplayWidth/Height in pixels should be the amount of pixels for
    one plane (1920x1080 for that full HD stream)."

    So, move the aspect ratio check in the mkv_write_stereo_mode() function
    and always write the embl when stereo format and/or aspect ration is set.
    Also add a few comments to that function.

    CC : libav-stable@libav.org
    Found-by : Asan Usipov <asan.usipov@gmail.com>

    • [DH] libavformat/matroskaenc.c
  • matroskaenc : write correct Display{Width, Height} in stereo encoding

    22 octobre 2014, par Vittorio Giovara
    matroskaenc : write correct DisplayWidth, Height in stereo encoding
    

    should be the raw amount of pixels (for example 3840x1080 for full HD side by
    side) and the DisplayWidth/Height in pixels should be the amount of pixels for
    one plane (1920x1080 for that full HD stream)."

    So, move the aspect ratio check in the mkv_write_stereo_mode() function
    and always write the embl when stereo format and/or aspect ration is set.
    Also add a few comments to that function.

    CC : libav-stable@libav.org
    Found-by : Asan Usipov <asan.usipov@gmail.com>

    • [DBH] libavformat/matroskaenc.c
  • How to save frame from VOB with correct size ?

    18 mars 2017, par Paulo Barretto

    I am saving single frames from a vob file with ffmpeg.

    ffprobe shows for my vob file :

    Stream #0:1[0x1e0] : Video : mpeg2video (Main), yuv420p(tv), 720x480
    [SAR 8:9 DAR 4:3], Closed Captions, 3750 kb/s, 29.97 fps, 29.97 tbr,
    90k tbn, 59.94 tbc

    My command line is

    ffmpeg -i File1.vob -ss 10 -q:v 2 -vframes 1 -an -sn frame10s.jpg

    My jpeg files are being saved with 720x480, horizontally stretched. How can I make them be saved with correct display ratio 640x480 ?