Recherche avancée

Médias (0)

Mot : - Tags -/publication

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (102)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    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 (...)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

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

  • librsvgdec : Fix frame clearing code

    1er février 2018, par Calvin Walton
    librsvgdec : Fix frame clearing code
    

    The existing code attempts to clear the frame by painting in OVER
    mode with transparent black - which is a no-op. As a result if you
    have many input frames (e.g. you're using a sequence of svg files),
    you'll start to see new frames drawn over old frames as memory gets
    re-used.

    Switch the code to paint using the CLEAR compositing operator,
    which fills every channel with 0 values (setting a source colour
    is not required).

    • [DH] libavcodec/librsvgdec.c
  • Code must find all MP4 files within subdirectory to compress using ffmpeg

    22 juin 2019, par ellipsical

    I have a drive with a lot of MP4 files which are tough to go through folder by folder and compress.

    I’m trying to make a script that runs in terminal that will open a designated folder, find all .mp4 files in the subfolder, and compress the files using specs I designate with ffmpeg. Obviously, the output files should be much lower in size if done right. I’m drafting a code which I have an idea about below but I’m not too good with BASH and/or PERL.

    for f in $(find ../ -iname '*.avi'); do
     n=$(echo $f|sed -e 's/.avi/_cbr.mp4/i');
     echo "ffmpeg [options] -i $f $n";
    done

    output :

    ffmpeg [options] -i ../1hourjob/videncode/sound10s.avi ../1hourjob/videncode/sound10s_cbr.mp4
    ffmpeg [options] -i ../1hourjob/videncode/t003.avi ../1hourjob/videncode/t003_cbr.mp4
    ffmpeg [options] -i ../ffmpeg/Masha.avi ../ffmpeg/Masha_cbr.mp4
    ffmpeg [options] -i ../ffmpeg/window.avi ../ffmpeg/window_cbr.mp4

    I’m wondering if I can even make some sort of GUI for this too. I feel a bit lost.

  • hls : fix min DTS code, try #2

    21 août 2012, par Michael Niedermayer

    hls : fix min DTS code, try #2