
Recherche avancée
Autres articles (63)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Other interesting software
13 avril 2011, parWe 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 : (...)
Sur d’autres sites (6575)
-
lavc/vaapi_encode : fix p_per_i calculate issue.
29 mars 2017, par Jun Zhaolavc/vaapi_encode : fix p_per_i calculate issue.
now gop_size <= (max_b_frames + 1) * p_per_i + 1 (IDR frame),
so celing p_per_i = (gop_size - 1 + max_b_frames) / (max_b_frames + 1)Signed-off-by : Jun Zhao <jun.zhao@intel.com>
Signed-off-by : Leilei <leilei.shang@intel.com>
Signed-off-by : Mark Thompson <sw@jkqxz.net> -
lavc/qsvdec : fix pts
11 juin 2021, par Haihao Xianglavc/qsvdec : fix pts
The time base used for compressed bitstream and video frame in the SDK
is 1, 90000 . [1][2]This can avoid the error message below from the muxer.
$> ffmpeg -hwaccel qsv -c:v hevc_qsv -i input.h265 -f null -
...
[null @ 0x561c24f6f2f0] Application provided invalid, non monotonically
increasing dts to muxer in stream 0 : 2 >= 2[1]https://github.com/Intel-Media-SDK/MediaSDK/blob/master/doc/mediasdk-man.md#mfxbitstream
[2]https://github.com/Intel-Media-SDK/MediaSDK/blob/master/doc/mediasdk-man.md#mfxframedataSigned-off-by : Zhong Li <zhongli_dev@126.com>
-
lavc/vaapi_encode_h264 : fix poc incorrect issue after meeting idr frame.
11 novembre 2016, par Jun Zhaolavc/vaapi_encode_h264 : fix poc incorrect issue after meeting idr frame.
when meeting IDR frame, vaapi_encode_h264 poc number don’t reset, now fix
this issue based on h264 spec. Some decoder don’t care this case, but this
fix will enhance the encoder action. Before this fix, poc number is
negative in some case.Reviewed-by : Jun Zhao <jun.zhao@intel.com>
Signed-off-by : Wang, Yi A <yi.a.wang@intel.com>
Signed-off-by : Mark Thompson <sw@jkqxz.net>