Recherche avancée

Médias (91)

Autres articles (68)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

Sur d’autres sites (6979)

  • Revision 35436 : Petites pétouilles en passant par là (écriture aux dernières normes ...

    22 février 2010, par marcimat@… — Log

    Petites pétouilles en passant par là (écriture aux dernières normes ISO)…

  • Live stream RTMP/RTSP player without using webview (WOWZA server) on Android

    2 septembre 2016, par SweetWisher ツ

    I am developing an Android application in which I want to publish as well as stream a video...

    What I want is :

    1. My app records a video and that video is sent to the server

    2. The recorded video will be streamed live to another Android device at the same time..

    I have completed the first task using javac and ffmpeg. I am stuck in the second task. I have searched a lot to stream the video from the server, but I didn’t succeed. I don’t want to use WebView and play the video in it. I want an RTMP player. This task has been completed in iOS... I want the same for Android. What is some link to fulfill my task ?

    P.S. :

    I am using wowza server and RTMP stream. I would like to stream RTMP video (.flv)... If no solution is available, I would like to switch to RTSP and for that also, need a working link to follow..

    Now I have switched to RTSP player [with wowza server] as I have not found an RTMP player without webview. How do I fix this issue ?

  • How to duplicate a mpegts stream into multiple other UDP streams using FFMPEG

    11 février 2016, par Jur_

    I’m experimenting with ffmpeg commandline to see to see if I can re-stream a mpegts udp stream in different resolutions.

    I succeed in re-streaming an incoming stream into a stream with a different resolution :

    ffmpeg -y -i "udp://234.5.6.7:1234" -vf scale=-1:320 -map 0 -acodec copy -dcodec copy -f mpegts udp://234.5.6.8:1234

    I would like to stream to multiple output mpegts streams in various resolutions. I could of course listen from multiple instances to the original broadcast and each stream to a different new endpoint and resolution, but it would be nicer to achieve this with a single ffmpeg call.

    Trying to at least output to multiple streams I seem stuck on getting the following to run (even without changing the resolution :)

    ffmpeg -y -i "udp://234.5.6.7:1234" -f tee "[f=mpegts:map=0:acodec=copy:dcodec=copy]udp://234.5.6.8:1234|[f=mpegts:map=0:acodec=copy:dcodec=copy]udp://234.5.6.9:1234"

    This results in the following error :

    Output file #0 does not contain any stream

    Could it be that I’m providing the output parameters incorrectly ? How would I fix the above line to generate two (or more) output streams ?