Recherche avancée

Médias (91)

Autres articles (49)

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

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

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

Sur d’autres sites (10922)

  • doc/filters : add geq diagonal split screen example

    12 février 2016, par Lou Logan
    doc/filters : add geq diagonal split screen example
    

    Also remove similar but confusing and less useful example.

    Based on geq expression by Patrick Race <raceink at gmail>.

    Signed-off-by : Lou Logan <lou@lrcd.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/filters.texi
  • FFmpeg split multiple files with logo overlay

    25 juillet 2014, par Onur Öztürk

    i want to add logo overlay in video. and also i want to split videos multiple mp4 files

    i can add logo with below code

    ffmpeg -i in.mp4 -i logo.png -filter_complex "[0:v][1:v]overlay=0:620" out.mp4

    also i can split the video to multiple files with below code

    ffmpeg -i in.mp4 -vcodec copy -acodec copy -ss 0.05 -t 20 out1.mp4 -vcodec copy -acodec copy -ss 20 -t 15 out2.mp4

    but i want to add logo and split them with one ffmpeg code

    i use below code but i get error

    ffmpeg -i in.mp4 -i logo.png -filter_complex "[0:v][1:v]overlay=0:620" -vcodec copy -acodec copy -ss 0 -t 20 out1.mp4 -vcodec copy -acodec copy -ss 20 -t 15 out2.mp4

    How can i do two jobs with one ffmpeg code

  • x86 : hevc_mc : split differently calls

    24 août 2014, par Christophe Gisquet
    x86 : hevc_mc : split differently calls
    

    In some cases, 2 or 3 calls are performed to functions for unusual
    widths. Instead, perform 2 calls for different widths to split the
    workload.

    The 8+16 and 4+8 widths for respectively 8 and more than 8 bits can’t
    be processed that way without modifications : some calls use unaligned
    buffers, and having branches to handle this was resulting in no
    micro-benchmark benefit.

    For block_w == 12 (around 1% of the pixels of the sequence) :
    Before :
    12758 decicycles in epel_uni, 4093 runs, 3 skips
    19389 decicycles in qpel_uni, 8187 runs, 5 skips
    22699 decicycles in epel_bi, 32743 runs, 25 skips
    34736 decicycles in qpel_bi, 32733 runs, 35 skips

    After :
    11929 decicycles in epel_uni, 4096 runs, 0 skips
    18131 decicycles in qpel_uni, 8184 runs, 8 skips
    20065 decicycles in epel_bi, 32750 runs, 18 skips
    31458 decicycles in qpel_bi, 32753 runs, 15 skips

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

    • [DH] libavcodec/x86/hevcdsp_init.c