Recherche avancée

Médias (91)

Autres articles (102)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (6254)

  • avformat/smacker : Cosmetics

    29 mars 2020, par Andreas Rheinhardt
    avformat/smacker : Cosmetics
    

    This is mainly about improving legibility of the code and getting rid of
    overlong lines by using variables for st->codecpar instead of accessing
    the codecparameters via st->codecpar->.

    Also, some code has been moved to better fitting places.

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

    • [DH] libavformat/smacker.c
  • How to round a square image and put it on video

    27 juillet 2022, par Erez git

    I've a video, videoPath.&#xA;I've a square image, squarePath.

    &#xA;

    This code places the squarePath on the video at a desired position to output, outputVideo.

    &#xA;

    final String[] cmd = new String[]{"-i", videoPath, "-i", squarePath, "-filter_complex", "[1:v][0:v]scale2ref=(300/300)*175:175[wm][base];[base][wm]overlay=(main_w-overlay_w)/2:(343)", "-pix_fmt", "yuv420p", "-c:a", "copy", "-y", outputVideo};&#xA;&#xA;int res = FFmpeg.execute(cmd);&#xA;

    &#xA;

    I would like to round the squarePath in the same command. Is it possible ?

    &#xA;

    This is the code to make it rounded as I found :

    &#xA;

    ffmpeg -i avatar.png -i mask.png -filter_complex [0]scale=400:400[ava];[1]alphaextract[alfa];[ava][alfa]alphamerge output.png&#xA;

    &#xA;

    but I don't understand how to merge these two commands.

    &#xA;

  • Revision 7d5bffc452 : Adding vpx_sse_to_psnr() function. Removing all copies of identical vp8_mse2psn

    27 février 2014, par Dmitry Kovalev

    Changed Paths :
     Modify /vp8/encoder/onyx_if.c


     Delete /vp8/encoder/psnr.c


     Delete /vp8/encoder/psnr.h


     Modify /vp8/encoder/temporal_filter.c


     Modify /vp8/vp8cx.mk


     Modify /vp9/encoder/vp9_onyx_if.c


     Delete /vp9/encoder/vp9_psnr.c


     Delete /vp9/encoder/vp9_psnr.h


     Modify /vp9/encoder/vp9_temporal_filter.c


     Modify /vp9/vp9cx.mk


     Add /vpx/internal/vpx_psnr.h


     Add /vpx/src/vpx_psnr.c


     Modify /vpx/vpx_codec.mk



    Adding vpx_sse_to_psnr() function.

    Removing all copies of identical vp8_mse2psnr/vp9_mse2psnr functions.
    Using vpx_sse_to_psnr() instead in all places.

    Change-Id : I15beef9834d43d8fc8a8a7a2d1fc5de3d658fed8