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 (11675)

  • avcodec/jpeg2000dec : jpeg2000 has its own lowres option

    9 juin 2023, par Michael Niedermayer
    avcodec/jpeg2000dec : jpeg2000 has its own lowres option
    

    jpeg2000 overrides the global lowres variable with a lowres field called reduction_factor
    ffmpeg -lowres X causes the reduction_factor to be set
    ffplay -lowres X causes both lowres and the reduction_factor to be set
    ossfuss sets only lowres

    only the ffmpeg variant works. This patch tries to make the other 2 work.

    Alternative we could just error out if things are inconsistent.
    More complex restructuring should be limited to the master branch
    to keep this reasonably easy to backport

    Fixes : out of array access
    Fixes : 59672/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_JPEG2000

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/jpeg2000dec.c
  • Burn picture in picture from two streams with ffmpeg

    9 juillet 2021, par Nagy Alfred

    I have a nice opportunity solving this with ffmpeg, but can not find solution :

    &#xA;

    I need to burn picture in picture (pip from Desktop capture) to the top right corner of a recorded rtsp stream.

    &#xA;

    I need to do it real time with the recording command (it can be really easy after the recording, but I do not have time to do it after the recording)

    &#xA;

    The recording is done with this command :

    &#xA;

    &#xD;&#xA;
    &#xD;&#xA;
    ffmpeg -i "rtsp://[username]:[pass]@xx.xx.xx.xx/cam/realmonitor?channel=1&amp;subtype=0&amp;unicast=true" -map 0:v -c:v copy -an -fflags flush_packets -max_delay 3 -flags -global_header -hls_time 20 -hls_list_size 1000 -vcodec copy -y "video.m3u8"

    &#xD;&#xA;

    &#xD;&#xA;

    &#xD;&#xA;&#xA;

    The picture in picture is a Desktop capture with ffmpeg (real time capturing, not an existing video).

    &#xA;

    Please help me solving this problem.

    &#xA;

    Thanks !

    &#xA;

  • avcodec/arm/sbcenc : avoid callee preserved vfp registers

    25 août 2019, par James Cowgill
    avcodec/arm/sbcenc : avoid callee preserved vfp registers
    

    When compiling FFmpeg with GCC-9, some very random segfaults were
    observed in code which had previously called down into the SBC encoder
    NEON assembly routines. This was caused by these functions clobbering
    some of the vfp callee saved registers (d8 - d15 aka q4 - q7). GCC was
    using these registers to save local variables, but after these
    functions returned, they would contain garbage.

    Fix by reallocating the registers in the two affected functions in
    the following way :
    ff_sbc_analyze_4_neon : q2-q5 => q8-q11, then q1-q4 => q8-q11
    ff_sbc_analyze_8_neon : q2-q9 => q8-q15

    The reason for using these replacements is to keep closely related
    sets of registers consecutively numbered which hopefully makes the
    code more easy to follow. Since this commit only reallocates
    registers, it should have no performance impact.

    Signed-off-by : James Cowgill <jcowgill@debian.org>
    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavcodec/arm/sbcdsp_neon.S