Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (36)

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

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (7016)

  • Revision e8a4a3e2b1 : Avoid scaling last_source, unless needed. Save some encoding time, for the case

    11 septembre 2015, par Marco

    Changed Paths :
     Modify /vp9/encoder/vp9_encoder.c



    Avoid scaling last_source, unless needed.

    Save some encoding time, for the case of spatial layers
    or under dynamic resizing mode.

    Change-Id : If4a8eb6f0376c3d2dde8465fde6bfd86ab704920

  • Real time video streaming for android and windows

    31 août 2015, par Guy Levin

    I need to stream video from one computer to both android and windows clients (might be multiple clients), must be as close as can be to real time.
    I am using ffmpeg to accomplish this, but the stream is played on clients side with 5-10 sec delay from when the movie was filmed.

    What can I do ? What is the best way to accomplish this ? What are the best protocols for this ? what are the best libraries for android and windows ?

    Thanks,

  • Using ffmpeg, extract small part of .m4a audio file specifying exact start and end time

    31 août 2015, par Kes

    I have Linux mint 17.1.

    When I use ffmpeg to cut out a section of a 4 hour long .m4a audio file as follows :

    ffmpeg -ss 0:10:00 -i in_file.m4a -vn -c copy -t 0:40:00 out_file.m4a

    the correct position and duration of extract is extracted and the file plays just fine.

    How can I extract using the end time of the extract, not the duration ?
    ie in this case the start time and end time are 0:10:00 and 0:00:50.

    Thank you