Recherche avancée

Médias (91)

Autres articles (83)

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (5154)

  • FFMPEG video conversion time is too long

    7 mars 2013, par Praveen Ravi

    I have a website similar to that of youtube. Users can upload their videos in different formats (mov, flv etc). My site will convert these videos to different formats, so that other users can download and rate these videos. I build my site using codeigniter, i am using ffmpeg to convert videos to various formats. One of my issue is that, video conversions are taking so much time.

    For example an 76MB video is taking almost 2 hours to convert to various formats. Is there any solution for my problem.

  • How to post input (Feeds) from camera to ffmpeg (ffserver) for live streaming

    1er janvier 2017, par A Sahra

    I want to stream video live that’s captured via getUserMedia and post it to ffmpeg ffserver as an Input or feed to make it live for other users on my website.

    How would i get the Video as video4linux2 here ?

    $ffmpeg -f video4linux2 -i /dev/video0

    I am getting video via getUserMedia from camera and in BackEnd it’s PHP codeigniter.

  • what's the theory of mix audio in the ffmpeg

    6 juin 2017, par from_mars

    when I wanted to mix two file into one, I found the toolkit.when I did
    this after following the command, everything was fine,just like :

    ffmpeg -i 1.wav -i 2.wav -filter_complex amix=inputs=2:duration=longest:dropout_transition=2 out.wav

    but there is something I want to know.

    1. what’s the theory of mix audio in the ffmpeg.

      Do you just calculate the average of the input file ?

    2. what’s the dropout_transiton.

      and I found the reference in the website : dropout_transition
      The transition time, in seconds, for volume renormalization when an input stream ends. The default value is 2 seconds.
      .
      but I don’t know what’s the mean.

      if dropout_transiton=0, what would happened ?

    Thanks !(sorry for my poor english)