Recherche avancée

Médias (91)

Autres articles (18)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (4594)

  • Anomalie #3019 : Mise à jour de table auteurs_liens

    1er novembre 2013, par b b

    Plus de nouvelles à propos de ce bug depuis un moment, on peut fermer le ticket non ?

  • Revision 77561 : une nouvelle option : afficher_si_remplissage. Fonctionne comme ...

    19 octobre 2013, par maieul@… — Log

    une nouvelle option : afficher_si_remplissage. Fonctionne comme afficher_si, mais ne s’applique au’au moment du remplissage du formulaire, et non lors de l’affichage des résultats. Exemple d’emploi : proposer plusieurs champs à remplir, qu’on affiche au fur et à mesure en basculant un menu déroulant. + mettre afficher_si pour la selection multiple

  • mediastreamsegmenter stops sending id3 metadata using HLS

    9 mai 2013, par alawson421

    I am using a combination of ffmpegand Apple's mediastreamsegmenter and id3taggenerator to create a HLS stream with metadata (ID3) embedded in it. I have all of the applications running and am able to retrieve the metadata out of the stream on the client side, but the issue is that after what seems like a random amount of time, the client stops receiving metadata on the stream.

    Here is what I have working now :

    This is the ffmpeg and mediastreamsegmenter part :

    ffmpeg -i udp://@:5010 -c:v libx264 -crf:v 22 -b:v 500k -preset:v veryfast -c:a libfdk_aac -b:a 64k -f mpegts - | mediastreamsegmenter -b http://localhost/stream -f /usr/local/nginx/html/stream/ -t 10 -s 4 -S 1 -D -y id3 -m -M 4242 -l log.txt

    This is taking a udp stream on the localhost on port 5010 and encoding the video and audio to H.264 and AAC, respectively. It is pipping the MPEG-2 transport stream segments to the mediastreamsegmenter, which in turn is generating the .M3U8 file and associated .ts files and placing them on a NGINX webserver. The mediastreamsegmenter is also listening on port 4242 for tcp traffic from the id3taggenerator which I will show how I am using it now :

    id3taggenerator -text '{"x":"12","y":"36"}' -a localhost:4242

    As you can see, I am sending some simple x-y coordinates in JSON as text to the mediastreamsegmenter listening on port 4242. I am actually using a Python script to send some test data at the moment. Here is the script :

    #!/usr/local/bin/python3
    from subprocess import call
    from time import sleep

    for i in range(0, 10):
       for j in range(0, 10):
           x = str(20 * i)
           y = str(20 * j)
           print("X: " + x + " - Y: " + y)
           call(["id3taggenerator", "-text", "{\"x\":\"" + x + "\",\"y\":\"" + y + "\"}", "-a", "localhost:4242"])
           sleep(1.0)

    This script is just sending a bunch of x-y coordinates using the id3taggenerator CLI. I have adjusted the sleep amount from 0.1 to 15 and it doesn't seem to make any difference. The client application that is getting the metadata out of the stream only prints out anywhere from 4 to 35 points, but never has it ever received all of the x-y coordinates.

    I am wondering if there is a limit to the amount of metadata that can sent per frame, but I cannot seem to find anything that specifies a hard-limit value for any of these tools...