Recherche avancée

Médias (0)

Mot : - Tags -/gis

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

Autres articles (84)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (12270)

  • configure.ac : Add VSX enable/disable

    8 juillet 2018, par Anton Blanchard
    configure.ac : Add VSX enable/disable
    

    We want to create functions with PowerPC VSX instructions, so add
    a configure check.

    Signed-off-by : Anton Blanchard <anton@ozlabs.org>

    • [DH] configure.ac
  • Revision e0e4045db8 : variance_test : fix build w/—disable-vp8-encoder s/CONFIG_VP8\b/CONFIG_VP8_ENCO

    12 juin 2015, par James Zern

    Changed Paths :
     Modify /test/variance_test.cc



    variance_test : fix build w/—disable-vp8-encoder

    s/CONFIG_VP8\b/CONFIG_VP8_ENCODER/

    Change-Id : I616aace9cf8f18d7e83f00f7aef3b8a26fc4c17b

  • How to "filter" a file through command line before apache sends it to client ?

    1er septembre 2020, par Timothe Jahan

    I have large collection of video files which are available on our website.&#xA;For each video we have multiple quality and language, so in order to save space we store only 1 file, which contains all audio and video tracks.

    &#xA;

    Our streaming server can handle these multitrack files in order to serve only the useful part to each user, but we also make them available for download through the apache web server.&#xA;Currently, when a user request a file (certain quality, certain language), we first create a temporary file with only his needs, and give him for download.&#xA;I would like to remove this intermediate step and extract on the fly.&#xA;Extraction can be done by ffmpeg, but I need to have apache "pipe" the file through ffmpeg before sending the bytes out. Do you have any way of doing this.

    &#xA;

    example :

    &#xA;

    &#xA;

    Filename_multi.mp4 [SD,HD,fr,en,ru]&#xA;User request : Filename_HD_fr.mp4 [HD,fr]&#xA;Apache fetch the file Filename_multi.mp4 and pipe it through an ffmpeg command and send the bytes as > they are encoded, not waiting for the end.

    &#xA;

    &#xA;

    Note this is on linux, and the ffmpeg part is not a problem.

    &#xA;

    Thx&#xA;Timothé

    &#xA;