Recherche avancée

Médias (91)

Autres articles (111)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (13690)

  • Revert "Disable warnings for casting pointers to integers, there is nothing wrong...

    20 novembre 2021, par Andreas Rheinhardt
    Revert "Disable warnings for casting pointers to integers, there is nothing wrong with that."
    

    This reverts commit 5258f64a14713499cf84840b3ab3a1ee7cdcaeb8.
    The premise of said commit (that conversions from pointer to int
    are ok) is wrong : C99/C11 6.3.2.3 5 : "Any pointer type may be converted
    to an integer type. [...] If the result cannot be represented in the
    integer type, the behavior is undefined." (C90 6.3.4 contains a similar
    restriction.) So don't disable -Wpointer-to-int-cast.

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

    • [DH] configure
  • libavutil/hwcontext_qsv : fix a bug for mapping vaapi frame to qsv

    16 novembre 2021, par nyanmisaka
    libavutil/hwcontext_qsv : fix a bug for mapping vaapi frame to qsv
    

    The data stored in data[3] in VAAPI AVFrame is VASurfaceID while
    the data stored in pair->first is the pointer of VASurfaceID, so
    we need to do cast to make following commandline works :

    ffmpeg -hwaccel vaapi -hwaccel_device /dev/dri/renderD128 \
    - hwaccel_output_format vaapi -i input.264 \
    - vf "hwmap=derive_device=qsv,format=qsv" -c:v h264_qsv output.264

    Signed-off-by : nyanmisaka <nst799610810@gmail.com>
    Signed-off-by : Wenbin Chen <wenbin.chen@intel.com>
    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DH] libavutil/hwcontext_qsv.c
  • avformat/mov : add option max_stts_delta

    27 novembre 2021, par Gyan Doshi
    avformat/mov : add option max_stts_delta
    

    Very high stts sample deltas may occasionally be intended but usually
    they are written in error or used to store a negative value for dts correction
    when treated as signed 32-bit integers.

    This option lets the user set an upper limit, beyond which the delta is clamped to 1.
    Values greater than the limit if negative when cast to int32 are used to adjust onward dts.

    Unit is the track time scale. Default is UINT_MAX - 48000*10 which
    allows upto a 10 second dts correction for 48 kHz audio streams while
    accommodating 99.9% of uint32 range.

    Signed-off-by : Gyan Doshi <ffmpeg@gyani.pro>
    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/demuxers.texi
    • [DH] libavformat/isom.h
    • [DH] libavformat/mov.c