Recherche avancée

Médias (91)

Autres articles (64)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

Sur d’autres sites (9977)

  • Does simple rescaling from 1080p to frame height of 720 lead to 720p ?

    12 août 2015, par nburk

    I want to convert a 1080p to 720p and also lower resolutions eventually.

    I have been using ffmpeg for all my video processing activities so far, and would simply approach this task using the following command :

    ffmpeg -i tos.mov -vf scale=-1:720 tos_0x720.mov

    I understand that this will rescale my video to a new frame size having 720 pixels set as a fixed height and the width dynamically calculated.

    What I am not sure about are the implications regarding the quality factors of the video when using ffmpeg this way.

    1. Is it valid to assume that running this command will output a perfect HD 720p quality video ?
    2. What would be a benefit of using dedicated video conversion software to accomplish my goal compared to running the above command ?
  • avcodec/magicyuvenc : Store slice width and height

    17 avril, par Andreas Rheinhardt
    avcodec/magicyuvenc : Store slice width and height
    

    Avoids rederiving it every time.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/magicyuvenc.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>

    • [DH] libavformat/matroskaenc.c