Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (92)

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

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

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

Sur d’autres sites (6107)

  • How to extract Programme service data from radio stream

    12 janvier 2017, par NathanK

    I’m using ffmpeg to save a publicly available radio stream to mp3 files. I would like to know what the schedule is for the radio station before I begin downloading the stream. In other words, I’d like to know if a radio stream contains something akin to the electronic program guide and, if so, is there a library/api available on linux that will allow me to extract this data. I know already that a radio signal can contain a program associated data field (I’m not sure how to extract this either).

    I’ve searched on stackoverflow, I wasn’t able to find anything similar. After searching for 2 hours on google to no avail, I’m choosing to post this question here. Any help is greatly appreciated.

  • video streaming server ffserver, can i use it in live env

    25 décembre 2019, par shrw

    I was looking for video streaming server accept videos and stream it.

    Saw ffserver was
    https://trac.ffmpeg.org/wiki/ffserver

    Warning : ffserver has been removed on 2018-01-06. If you still need it checkout commit 2ca65fc or use the 3.4 release branch.

    It also suggested https://github.com/klaxa/mkvserver_mk2

    Can i still use ffserver.

  • How to join 2 audio files into one using either ffmpeg or eac3to ?

    18 janvier 2017, par user3108268

    Not merge or mux into each other, because this is what I found so far, but take 2 .mp3 files e.g. 1 hour long each and join them and it becomes 1 .mp3 file with total of 2 hour long ?

    I did this :

    ffmpeg -i audio.mp3 -i 1.mp3  -filter_complex amerge -c:a libmp3lame -q:a 4 audiofinal.mp3

    But I think it encode both files into each other or something.

    And there’s nothing about this at https://en.wikibooks.org/wiki/Eac3to/How_to_Use

    I’d like to prefer command line solution and not Audacity or mp3DirectCut.

    edit : i tried eac3to m1.mp3+m2.mp3 1.mp3 but it doesn’t join them, output audio is the length of first file.