Recherche avancée

Médias (91)

Autres articles (80)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (4111)

  • fftools/cmdutils : tighten condition for media type stream specifiers

    8 août 2024, par Anton Khirnov
    fftools/cmdutils : tighten condition for media type stream specifiers
    

    Require the character indicating media type to be followed by a
    non-alphanumeric character (or end of string).

    Needed by future syntax extensions.

    • [DH] fftools/cmdutils.c
  • How to use Wowza media server with Jack Audio Connection Kit as input on MAC OS ?

    15 mai 2016, par Saneet

    I need to live broadcast multiple RTSP streams out of the audio mixing software StudioOne. For this I am using Jack Audio Connection Kit as the connector. I’ve already tried using IceCast with Darkice but the latency went up to 6+ seconds which won’t work for the project that I’m working on. That’s why I’m using the Wowza media server which does RTSP streaming instead of HTTP.

    That’s where I’m stuck as I need some way of getting the streams from Jack Audio to Wowza on a MAC OS machine. I’ve tried using FFMpeg but FFMpeg doesn’t have the feature to get input from Jack Audio on it’s OSX version. I can try to port my whole setup onto an Ubuntu but the mixing software StudioOne isn’t available on Ubuntu. I can try using Wine to port StudioOne to Linux but I’m not sure it’ll be a good idea for real time mixer to be used as a port, especially when latency is involved.

    Is there some other way I can get input from Jack Audio to Wowza Media Server on my MAC ?

  • Use C++ and FFmpeg to stream to Flash Media Server

    25 janvier 2014, par Farawin

    I'm building an application in C++ that should use FFmpeg to send a live stream to Flash Media Server. For starters I would like to be able to send a .mp4 file. Using the FFmpeg .exe I can do it like this :

    ffmpeg -re -i TEST.mp4 -vcodec libx264 -f flv rtmp://[host]/[application]/[stream]

    How would you go about implementing something like that in code ? I can only figure out how to read data, not write it. I have found functions to open input but nothing about how to connect to FMS. All write functions I can find seems to be how to write to file. Please advice.