Recherche avancée

Médias (91)

Autres articles (107)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (19267)

  • Revision e39ecfaa98 : Preliminary code for variance based paritioning Brings back most of Jim's previ

    4 mars 2014, par Deb Mukherjee

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_mcomp.c


     Modify /vp9/encoder/vp9_onyx_if.c


     Modify /vp9/encoder/vp9_pickmode.c



    Preliminary code for variance based paritioning

    Brings back most of Jim's previous patch for choosing
    partitioning based on variance while making it compatible
    with the current state of the code. Also adds a
    nonrd_use_partition() function to recursively encode for any
    arbitrary sb_type decisions within a 64x64 block ; and
    includes some refactoring.

    Currently, when the VAR_BASED_PARTITIONING mode is turned on
    for speed 7, there is a 10+% speed-up observed.

    Experiments/improvements with this new partitioning method
    will be conducted subsequently.

    Change-Id : Ie6f43bfbde30583e941f450bf07c3b48828c9571

  • avformat/iamfdec : swap back and side streams if both are present

    30 décembre 2024, par James Almer
    avformat/iamfdec : swap back and side streams if both are present
    

    Layouts with both pairs (7.1, 7.1.2, etc) in IAMF that follow the definition in
    ITU-R BS.2051-3 for Systems I and J also follow its ordering. This means side
    comes before back, which is the inverse of how it's defined in AVChannel.

    To workaround this without having to use custom order channel layouts, swap the
    stream ids in the input IAMF structure, so packets for one are mapped to the
    other.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/iamfdec.c
    • [DH] libavformat/version.h
    • [DH] tests/ref/fate/iamf-7_1_4
  • FFMPEG Video to still images and back to video loss less

    4 novembre 2012, par Rigoni

    I'm trying to extract image from an uncompressed AVI video using ffmpeg with the command :

       ffmpeg -i sorce.avi -f image2 -pix_fmt bgr24 images/%1d.bmp

    All is ok, but now I need to revert these images back to a video file.
    I'm trying using this command :

       ffmpeg -f image2 -r 24 -i marked/%1d.bmp -y -vcodec ffv1 -pix_fmt bgr24 test.avi

    But, the output video is compressed and with bad quality.

    Is there any way to extract the images in RGB format and than back to a lossless video ?

    I also tryed to use -vcodec rawvideo, but the quality still bad.

    Best regards.