Recherche avancée

Médias (91)

Autres articles (43)

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (10032)

  • Replace AV_PKT_DATA_QUALITY_FACTOR by AV_PKT_DATA_QUALITY_STATS

    21 juillet 2015, par Michael Niedermayer
    Replace AV_PKT_DATA_QUALITY_FACTOR by AV_PKT_DATA_QUALITY_STATS
    

    The stats are a superset of the quality factor, also allowing the picture type and encoder "PSNR" stats to be exported
    This also replaces the native by fixed little endian order for the affected side data

    AV_PKT_DATA_QUALITY_FACTOR is left as a synonym of AV_PKT_DATA_QUALITY_STATS

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/APIchanges
    • [DH] ffmpeg.c
    • [DH] libavcodec/avcodec.h
    • [DH] libavcodec/avpacket.c
    • [DH] libavcodec/dnxhdenc.c
    • [DH] libavcodec/internal.h
    • [DH] libavcodec/libx264.c
    • [DH] libavcodec/libxavs.c
    • [DH] libavcodec/libxvid.c
    • [DH] libavcodec/mpegvideo_enc.c
    • [DH] libavcodec/svq1enc.c
    • [DH] libavcodec/version.h
    • [DH] libavformat/dump.c
  • ffmpeg 2 pass encoding- understand the statistics in the output .log file

    21 juin 2021, par Yaelvi

    I am using 2 pass encoder to encode my input video with a target bitrate.&#xA;I want to get the encoder (x264) statistics from the first pass- these statistics are written to ffmpeg2pass.log&#xA;the output for each frame looks like that :

    &#xA;

    in:2 out:2 type:B dur:2 cpbdur:2 q:28.41 aq:25.07 tex:4721 mv:2357 misc:2266 imb:24 pmb:527 smb:3049 d :- ref:0 ;

    &#xA;

    How can I found is the meaning of each value ? (for example, mv is motion vectors, but what is the meaning of misc, imb, pmb etc.?)

    &#xA;

    ffmpeg command used :&#xA;ffmpeg -f rawvideo -pix_fmt yuv422p16le -s:v 1280x720 -i "input_file.yuv" -c:v libx264 -pass 1 -stats -vstats -passlogfile "log_file_prefix" -f mp4 -y "output.mp4" &&&#xA;ffmpeg -f rawvideo -pix_fmt yuv422p16le -s:v 1280x720 -i "input_file.yuv" -c:v libx264 -pass 2 -passlogfile "log_file_prefix" -y "output.mp4"

    &#xA;

  • ffmpeg 2 pass encoding- understand the statistics in the output .log file

    21 juin 2021, par Yaelvi

    I am using 2 pass encoder to encode my input video with a target bitrate.&#xA;I want to get the encoder (x264) statistics from the first pass- these statistics are written to ffmpeg2pass.log&#xA;the output for each frame looks like that :

    &#xA;

    in:2 out:2 type:B dur:2 cpbdur:2 q:28.41 aq:25.07 tex:4721 mv:2357 misc:2266 imb:24 pmb:527 smb:3049 d :- ref:0 ;

    &#xA;

    How can I found is the meaning of each value ? (for example, mv is motion vectors, but what is the meaning of misc, imb, pmb etc.?)

    &#xA;

    ffmpeg command used :&#xA;ffmpeg -f rawvideo -pix_fmt yuv422p16le -s:v 1280x720 -i "input_file.yuv" -c:v libx264 -pass 1 -stats -vstats -passlogfile "log_file_prefix" -f mp4 -y "output.mp4" &&&#xA;ffmpeg -f rawvideo -pix_fmt yuv422p16le -s:v 1280x720 -i "input_file.yuv" -c:v libx264 -pass 2 -passlogfile "log_file_prefix" -y "output.mp4"

    &#xA;