Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (111)

  • 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

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

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

  • Revision 17209 : fix line endings

    13 mai 2010, par j — Log

    fix line endings

  • dpx : use aligned line starts

    13 août 2014, par Christophe Gisquet
    dpx : use aligned line starts
    

    SMPTE 268M-2003 specifies that each line starts at a 4-bytes boundary.
    Therefore, modify correspondingly the input buffer strides and size.

    Partially fixes ticket #3692 : DLAD_8b_3c_big.dpx still has inverted
    colors, which might be related to endianness.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/dpx.c
  • How to read sei by command line of ffmpeg

    28 avril 2021, par glowry

    How to read sei by command line of ffmpeg.&#xA;e.g.

    &#xA;

    ffmpeg -i INPUT -c:v copy -bsf:v filter1[=opt1=str1:opt2=str2][,filter2] OUTPUT&#xA;

    &#xA;

    I know bsf can modify the sei, but it can't read sei.

    &#xA;

    If the command line can't solve it, plase give me some demo by api of ffmpeg.

    &#xA;

    For example.

    &#xA;

    I insert a h264_metadata to file.

    &#xA;

    ffmpeg -i original.mp4 -c copy -bsf:v h264_metadata=sei_user_data=&#x27;086f3693-b7b3-4f2c-9653-21492feee5b8&#x2B;hello&#x27; file_with_h264_metadata.mp4&#xA;

    &#xA;

    and then I push it to rtmp

    &#xA;

    ffmpeg -re -i ./file_with_h264_metadata.mp4 -vcodec h264 -f flv  rtmp://127.0.0.1:1935/live/h264_metadata&#xA;

    &#xA;

    How can I extact the h264_metadata with ffmpeg command line ?

    &#xA;

    I have try this, but it does not work

    &#xA;

    ffmpeg -i rtmp://127.0.0.1:1935/live/h264_metadata -c:v copy -bsf:v h264_metadata -f null -&#xA;

    &#xA;