Recherche avancée

Médias (1)

Mot : - Tags -/net art

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 (11257)

  • configure : allow mixed declarations and code for Objective-C

    25 septembre 2024, par Marvin Scholz
    configure : allow mixed declarations and code for Objective-C
    

    Mixing declarations and code is quite common in Objective-C (as can be
    seen by the number of warnings we have for this in Objective-C files)
    and forcing to not do it usually results in worse code, with unnecessary
    widely scoped variables, which in turn makes variable shadowing and
    accidentally using the wrong variable more common and harder to notice.

    Signed-off-by : Zhao Zhili <zhilizhao@tencent.com>

    • [DH] configure
  • Revision 5c22224e9e : Corrected optimization of 8x8 DCT code The 8x8 DCT uses a fast version whenever

    11 décembre 2014, par Peter de Rivaz

    Changed Paths :
     Modify /vp9/common/x86/vp9_idct_intrin_sse2.c



    Corrected optimization of 8x8 DCT code

    The 8x8 DCT uses a fast version whenever possible.
    There was a mistake in the checking code which
    meant sometimes the fast version was used when it
    was not safe to do so.

    Change-Id : I154c84c9e2d836764768a11082947ca30f4b5ab7
    (cherry picked from commit fd05fb0c21e253b4d6f92d7e0b752850ff8ab188)

  • Can I run ffmpeg from my Python code and return a signal when it's done compressing ?

    7 février 2016, par xavier

    Seems that what I am looking for ( a simple ffmpeg interface for python ) is not available for python 3.5. I want to run a commandline from my code that I will fill with variables like :

    video_file = "/path/to/video/video.file"
    sound_file = "/path/to/sound/sound.file"
    output_name= (video.file + 'mp4')
    fmpeg -loop 1 -i video_file -i sound_file -c:v libx264 -tune stillimage -c:a aac -strict experimental -b:a 192k -pix_fmt yuv420p -shortest output_name

    Is it possible to return a signal to trigger the next function that would use output_name as value to do next thing ? Is this even possible ¿ ?