Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (57)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (10577)

  • Merge pull request #19 from Grandt/3.20

    29 décembre 2013, par Grandt
    Merge pull request #19 from Grandt/3.20
    

    * Fixed : Issue #15, where name space declarations were erroneously stripped off the html tag of added chapters.
    * Fixed : An issue, where PNG images exceeding the maximum specified sizes were broken during resizing.
    * Fixed : Issue #16, where ePub 3 multimedia needed to be added to the automatic chapter processing.
    * Fixed : Potential issue related to Issue #16 with loading large files from external sources, where these might result in memory errors. These will now be loaded into a temp file on the server, before being added to the book.
    * Fixed : Issue #17, where a function was called as a global.

  • How much video data is required to get stream information using ffprobe ?

    21 octobre 2014, par Mayank

    I am using java to download a video file from my cloud. Later on I am using java runtime to execute ffprobe on that video file. The video file size could be in hundreds of MBs. I want to know that can I make only a partial download of the video file (say around 10kb) and run ffprobe on this content and still get all relevant information ? If yes, how much data should be downloaded to guarantee successful ffprobe results ?

  • FFMPEG RTSP Streaming delay

    25 juillet 2016, par Spartan

    I am using FFMPEG with android and saving the RTSP Stream from my IP Camera to directly into local storage using following command :

    ffmpeg -i rtsp://@192.168.241.1:62156 -acodec copy -vcodec copy c:/abc.mp4

    This command is working fine and I am able to store RTSP directly into local storage of device.

    Problem : (The delay in start of the RTSP download)

    This problem mostly occurring with lower end devices and the delay time to start the download RTSP is variably changing(from 0-4 seconds) based upon the configuration of devices. In higher end devices the delay is around 100 to 300 milliseconds and that is okay.

    If somehow I can get the delay time in starting the RTSP download then I can handle my cases. So my question is : Is there any way to get the delay time ?