Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (47)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

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

Sur d’autres sites (7451)

  • parse 'description' metadata from video created by iphone

    8 juillet 2014, par Darcy

    I have a mp4 video created by iphone 5c.
    The video contains ’description’ metadata that can be catched by exiftool.

    But I need parse the info under Android where exiftool seems too big.

    Is there a better solution to parse the metadata, such as ffmpeg, libmp4v2 or something else ?

    Thanks everyone.

    MP4 demo can be found here :
    http://xicabin.com/iphone-release.mp4

  • On demand RTSP streaming FFMPEG iPhone

    23 mai 2014, par Tarun Seera

    We are using FFmpeg for real time streaming in iPhone.
    For testing purpose we have hosted a video on local server.When we try to start stream avformat_open_input method always return error code -5.
    I have read some where that is is I/O error but the same URL working fine on VLC media player.
    If we start streaming on VLC first then play it on iPhone it works fine.
    I am not getting where I am wrong the IP address and network connection both are fine.

  • How to split a video into individual encoded frames ?

    23 mai 2015, par Asik

    Source video is H264 in an mp4 container, I’m trying to split it into individual encoded frames. I tried with the following command line :

    ffmpeg -i "input.mp4" -f image2 "%d.h264"

    But that creates jpegs with the extension "h264", rather than actual H.264 frames.