Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (39)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • FFMPEG | Streaming video frames from server

    11 décembre 2013, par Aqueel

    I am sending frames of a video in form of JPEG images to my server on RMTP stream. At server side, I want to connect the stream (ip + port) to ffmpeg so that it can grab images from stream and create a video stream from them. Actually my server is listening on an IP and port for incoming frames. This part is done. Where I am stuck is that how to convert these frames to a video stream using FFMPEG. Can anyone please tell me how to achieve this ? I know image2pipe is what I should go with but I have not found its syntax and documentation on google. So please help me.

    Thanks and best regards

  • FFMPEG Transcode MP3 to MP4 and then stream

    27 juillet 2018, par Sam

    I have an MP3 stream with meta data (That I need to keep) and I need to transcode
    it into AAC+ MP4. I then need to stream this MP4 to a Shoutcast server.

    The current line that I have is :

    ffmpeg -re -i http://Input Server IP And Port -b:a 128k -ar 44100 -c aac -f mp4 http://output server IP and Port

    I will get an error saying :

    [mp4 @ 000002700de16dc0] muxer does not support non seekable output
    Could not write header for output file #0 (incorrect codec parameters ?) : Invalid argument
    Error initializing output stream 0:0 —

    Think Internet radio show.

    If I have gotten this completely wrong, please tell me, and if anyone could shine some light onto this, that would be great. Thanks.

  • Understanding timeout in ffmpeg

    11 janvier 2015, par John

    I want to disable timeout for ffmpeg stream, which I define like this :

    ffmpeg -i /some/movie -timeout -1 http://ip:port

    but after few seconds i see this in the console :

    http://ip:port: Operation timed out

    I read documentation for ffmpeg and found this :

    *timeout
    Set timeout in microseconds of socket I/O operations used by the underlying low level operation. By default it is set to -1, which means that the timeout is not specified.*

    It looks like it is not even specified by default, but it fails and I don’t understand why. it’s critical for me to use especially http protocol. How can I fix this ?