Recherche avancée

Médias (91)

Autres articles (54)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

  • MediaSPIP : Modification des droits de création d’objets et de publication définitive

    11 novembre 2010, par

    Par défaut, MediaSPIP permet de créer 5 types d’objets.
    Toujours par défaut les droits de création et de publication définitive de ces objets sont réservés aux administrateurs, mais ils sont bien entendu configurables par les webmestres.
    Ces droits sont ainsi bloqués pour plusieurs raisons : parce que le fait d’autoriser à publier doit être la volonté du webmestre pas de l’ensemble de la plateforme et donc ne pas être un choix par défaut ; parce qu’avoir un compte peut servir à autre choses également, (...)

Sur d’autres sites (11608)

  • avdevice/oss_dec : account for sample size when computing timestamp

    1er juin 2022, par Matt Jacobson
    avdevice/oss_dec : account for sample size when computing timestamp
    

    Don't assume each sample is one byte in size. Doing so results in wrong and
    occasionally non-monotonically-increasing timestamps.

    Fix nearby cosmetic typo.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavdevice/oss.c
    • [DH] libavdevice/oss.h
    • [DH] libavdevice/oss_dec.c
  • [MPV][FFMPEG] stack two videos to play them synchronously without re-encoding, but with a rotation (from metadata) applied to one of them

    10 juin 2022, par publicIDI

    I have 3 videos with the same resolution (1920x1080), but one of them has the rotation property set in the metadata while the two others are reencoded in the correct orientation.

    &#xA;

    I would like to stack them horizontally to compare their quality without re-encoding.&#xA;I know how to dynamically stack and display them with MPV, but not when one of them has a rotation metadata property :

    &#xA;

    Two videos in parallel

    &#xA;

    mpv --lavfi-complex="[vid1][vid2]hstack[vo];[aid1][aid2]amix[ao]" "v1_metadata.mp4" --external-file="v2.mp4"&#xA;

    &#xA;

    Three videos in parallel

    &#xA;

    mpv --lavfi-complex="[vid1][vid2][vid3]hstack=inputs=3[vo];[aid1][aid2][aid3]amix=inputs=3[ao]" "v1_metadata.mp4" --external-files="v2.mp4;v3.mp4"&#xA;

    &#xA;

    Precisions

    &#xA;

    v1_metadata.mp4 : rotation in the metadata

    &#xA;

    v1_metadata.mp4

    &#xA;

    v2.mp4, v3.mp4 : no metadata rotation

    &#xA;

    v2.mp4 and v3.mp4

    &#xA;

    How can I "apply" the rotation to the first video (v1_metadata.mp4) in order to display it stacked with the others ?

    &#xA;

    Thanks,

    &#xA;

  • ffbuild/common : Fix CPPFLAGS applied for compiling C++ files

    12 mai 2022, par Andreas Rheinhardt
    ffbuild/common : Fix CPPFLAGS applied for compiling C++ files
    

    Currently, $(CPPFLAGS) and $(CFLAGS) are prepended to CXXFLAGS
    (the flags for compiling C++) like this :
    CXXFLAGS := $(CPPFLAGS) $(CFLAGS) $(CXXFLAGS)
    Using " :=" creates a simply expanded variable, i.e. the values
    of the variable at the time of assignment are used and later
    modifications to them are ignored (using a recursively expanding
    variable (i.e. "=" instead of " :=") is not really possible here,
    as there would be an infinite loop when evaluating CXXFLAGS).

    Yet we perform later additions to CPPFLAGS : HAVE_AV_CONFIG_H and
    BUILDING_libfoo are defined. These do not reach C++ compilations.

    To fix this a trick is employed to prepend to a recursively
    expanded variable while keeping it recursively expanded.

    There are two practical consequences of this : C++ files now no longer
    include the version.h header, but only the version_major.h header
    of their library, saving some recompilations. Furthermore, they
    now get some optimized math functions (namely the ones from
    lavu/intmath.h instead of the ones from lavu/common.h).
    (av_parity() is the only one for which it makes a difference.)

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

    • [DH] ffbuild/common.mak