Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (58)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (6463)

  • How to configure Red5-Server 1.0.5 RELEASE and Red5-Client 1.0.5 RELEASE ? [on hold]

    25 juillet 2015, par Gerardo Barzola

    I have a big problem. Recently my friend and i we would try to configure Red5-client 1.0.5 RELEASE and Red5-server 1.0.5 RELEASE.

    We are using :

    • Ubuntu 12.04.5 LTS
    • ruby 2.0.0p643
    • Rails 4.2.1
    • Server Apache/2.2.22 (Ubuntu)
    • Phusion Passenger 5.0.7
    • FFMPEG version git-2015-05-22-ebb08f3

    And the configuration of the red5 server is good.
    But we have problems to configure red5 client. We dont know how to install and configure. We need to configure and webcamera screenshot and webcamera capture video.

    Do you give me and steps that how to install and configure ?

    Thanks a lot,

    Gerardo

  • Anomalie #4687 (En cours) : notification

    9 mars 2021, par b b

    Franck, cette notification n’a rien à voir avec SPIP, c’est ton serveur web qui génère ça... Je suis d’avis de fermer le ticket.

  • Exchange data between ffmpeg and video player

    12 mars 2012, par ov1d1u

    I'm using ffmpeg as a proxy for playing RTSP streams in VLC (because it seems that VLC doesn't work too well with TCP-based RTSP streams). While in Linux I'm doing this by creating a FIFO file and using it as output for ffmpeg, in Windows I can't do this because os.mkfifo() doesn't work under this OS. So I have to find a way to start ffmpeg with subprocess.Popen() and sending it's converted data to VLC in real time (I'm using the VLC bindings for Python).

    I tried to set ffmpeg's output to stdout (ffmpeg.exe -y -i rtsp ://fms30.mediadirect.ro/live/utv/utv ?tcp -acodec libmp3lame -ar 44100 -vodec copy -f flv -), catching that output and sending it to a SimpleHTTPServer class using sockets (well, I'm not sure that this approach was a good idea). I also tried by using pipes (with win32pipe.CreateNamedPipe) but I was still out of luck.

    How I could do this ? Or why VLC doesn't want to play this stream (rtsp ://fms30.mediadirect.ro/live/utv/utv) while ffmpeg will can ? This is the actual code used in Linux, which doesn't works on Windows : http://pastebin.com/vqX1Edwg