Recherche avancée

Médias (2)

Mot : - Tags -/rotation

Autres articles (38)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • Revision e272273443 : Renames x86_64 specific asm files Renames all x86_64 specific assembly files to

    21 mai 2014, par Deb Mukherjee

    Changed Paths :
     Delete /vp8/common/x86/loopfilter_block_sse2.asm


     Add /vp8/common/x86/loopfilter_block_sse2_x86_64.asm
    (from /vp8/common/x86/loopfilter_block_sse2.asm
    :e39860be93bdb5c8ee6487ba7d6597f1b40fb4b7)
     Delete /vp8/encoder/x86/ssim_opt.asm


     Add /vp8/encoder/x86/ssim_opt_x86_64.asm
    (from /vp8/encoder/x86/ssim_opt.asm
    :e39860be93bdb5c8ee6487ba7d6597f1b40fb4b7)
     Modify /vp8/vp8_common.mk


     Modify /vp8/vp8cx.mk


     Delete /vp9/common/x86/vp9_idct_ssse3.asm


     Add /vp9/common/x86/vp9_idct_ssse3_x86_64.asm
    (from /vp9/common/x86/vp9_idct_ssse3.asm
    :e39860be93bdb5c8ee6487ba7d6597f1b40fb4b7)
     Delete /vp9/encoder/x86/vp9_dct_ssse3.asm


     Add /vp9/encoder/x86/vp9_dct_ssse3_x86_64.asm
    (from /vp9/encoder/x86/vp9_dct_ssse3.asm
    :e39860be93bdb5c8ee6487ba7d6597f1b40fb4b7)
     Delete /vp9/encoder/x86/vp9_quantize_ssse3.asm


     Add /vp9/encoder/x86/vp9_quantize_ssse3_x86_64.asm
    (from /vp9/encoder/x86/vp9_quantize_ssse3.asm
    :e39860be93bdb5c8ee6487ba7d6597f1b40fb4b7)
     Delete /vp9/encoder/x86/vp9_ssim_opt.asm


     Add /vp9/encoder/x86/vp9_ssim_opt_x86_64.asm
    (from /vp9/encoder/x86/vp9_ssim_opt.asm
    :e39860be93bdb5c8ee6487ba7d6597f1b40fb4b7)
     Modify /vp9/vp9_common.mk


     Modify /vp9/vp9cx.mk



    Renames x86_64 specific asm files

    Renames all x86_64 specific assembly files to consistently
    end in _x86_64.asm. This will be useful for build systems to
    handle these files differently.
    All new 64-bit specific assembly files should use the new
    naming convention.

    Change-Id : I36c89584967c82ffc4088b1b5044ac15d2bb7536

  • avutil/tx_template : Don't waste space for inexistent factors

    22 octobre 2022, par Andreas Rheinhardt
    avutil/tx_template : Don't waste space for inexistent factors
    

    It is possible to avoid the factors array for the power-of-two
    tables for which said array is unused by using a different
    structure for initialization for power-of-two tables than for
    non-power-of-two-tables. This saves 3*15*16B from .data.

    Reviewed-by : Lynne <dev@lynne.ee>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavutil/tx_template.c
  • Animation with gnuplot : only one cruve plotted in an animation whereas 2 expected

    26 mai 2022, par stefan

    I have the following script which is expected to produce the animations of 2 curves :

    &#xA;

    #!/bin/bash&#xA;&#xA;for i in {1..397}; do&#xA;gnuplot -p &lt;&lt;-EOFMarker&#xA;set terminal png;&#xA;set output "pic$i.png";&#xA;set title "power spectrum";&#xA;set xlabel "scale (k)";&#xA;set ylabel "P(k)";&#xA;set key top left;&#xA;set grid;&#xA;set ytics out nomirror;&#xA;set xtics out nomirror;&#xA;set logscale x;&#xA;set logscale y;&#xA;set format x "10^{%L}";&#xA;set yrange [0:30000];&#xA;plot "CAMB-1.3.5/matter_camb$i" u 1:2 w l;&#xA;replot "EFTCAMB_v3_beta/matter_eftcamb$i" u 1:2 w l;&#xA;EOFMarker&#xA;done&#xA;&#xA;# Build movie with ffmpeg&#xA;ffmpeg -start_number 1 -i pic%d.png  movie.mpeg&#xA;

    &#xA;

    Every works fine excepted the fact that only one curve is plotted in animation (CAMB-1.3.5) :

    &#xA;

    Here is an example of frame :

    &#xA;

    enter image description here

    &#xA;

    Why the "replot" command is not taken into account in the generated image ?

    &#xA;