Recherche avancée

Médias (91)

Autres articles (52)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (5497)

  • How to have ffmpeg calculate the width after modifying by set height ratio ?

    29 mai 2021, par Nova

    After finding the resolution was the source of all my webm to MP4 codec conversion errors on my Android. I came across another problem. To break down my question :

    



    What all MP4 resolutions are supported on most devices ? I know they go by p from certain height value for them to work. 720p / ?X720 for example.

    



    Is there an easier way to calculate the width based from the height change while keeping the ratio ?

    



    ffmpeg -i old.webm -t 00:00:03 -s 320x240 new.mp4


    



    I currently use the -s setting perimeter from my testing example.

    


  • x86 : Don't hardcode the height to 8 in sad8_xy2_mmx

    13 juillet 2022, par Martin Storsjö
    x86 : Don't hardcode the height to 8 in sad8_xy2_mmx
    

    The height is hardcoded in some of the me_cmp functions, but not
    in all of them. But in the case of all other functions, it's hardcoded
    in the same place in SIMD functions as in the C reference functions,
    while this one function differs from the behaviour of the C code.

    (Before 542765ce3eccbca587d54262a512cbdb1407230d, there were a
    couple other sad8_*_mmx functions with similar hardcoded height.)

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavcodec/x86/me_cmp_init.c
  • ffprobe : Initialize coded_width/height

    19 janvier 2018, par Zhong Li
    ffprobe : Initialize coded_width/height
    

    coded_width/height are unnitialized and will be overwritten by
    dec_ctx->width/height in avcodec_open2()

    This fixes tiket #6958.

    Signed-off-by : Zhong Li <zhong.li@intel.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] fftools/ffprobe.c