Recherche avancée

Médias (1)

Mot : - Tags -/livre électronique

Autres articles (49)

  • 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

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

Sur d’autres sites (8456)

  • Solution to convert FLV to MP4 from streaming server [on hold]

    10 avril 2015, par user3799647

    I am looking for solution to convert FLV video file from streaming server like Vidzer, to HTML5 friendly format like mp4. I have small website with movies and I want to watch movies on my phone which support MP4.

    Is there any way to do that ? I have dedicated server, I don’t want to save files on server and convert, but convert on the fly using cURL, PHP and ffmpeg.

  • Live Streaming App iOS

    23 août 2016, par Jay Gajjar

    I am trying to develop a live-streaming application like the meerkat app, where user A can broadcast a live stream while other users are able to watch it. I am having trouble understanding the architecture and mechanisms used to upload video to a server. Currently, I am using a dedicated server with FFMPEG installed on it. I also know FFServer can be used to perform RTSP communication, but I am still unclear how to do this. Can anyone guide me on this ?

    I would like to know how to upload videos to a server or whether there is another way to perform a live stream. Open source frameworks are welcome.

  • rtsp stream capturing

    12 avril 2016, par ДМИТРИЙ МАЛИКОВ

    I’m looking for some universal way to dump rtsp stream. I want to figure out, that some rtsp stream is working well and server is sending some watchable video.

    openRTSP

    At first, google recommends me openRTSP tool.

    openRTSP -4 ${stream_link} > ${output_file}

    But output video file dumped by that tool is not really correct. Video decoder (ffdec) returns many errors like "Failed to decode video packet" and "[h264] no frame !", which don’t suit me.

    ffmpeg

    Then I’ve tried to dump rtsp stream with ffmpeg tool.

    ffmpeg -loglevel debug -i "${stream_link}" -s 640x480 -vcodec copy -acodec copy -y ${output_file}

    But streaming process was interrupted often by error :

    Application provided invalid, non monotonically increasing dts to muxer in stream 0: 730672 >= 730672
    av_interleaved_write_frame(): Invalid argument

    I’m trying to use --fflags igndts but ffmpeg doesn’t ignore these errors. It doesn’t make any sense, because that error actually means that audio and video streams are sending asynchronously. The worst thing is that dumped file, resulted by that interrupted dump, is not correct too. Ffdec return some error :

    ERROR [mov,mp4,m4a,3gp,3g2,mj2] moov atom not found
    ERROR [ffdec] av_open_input_file: Operation not permitted

    After a nice cup of googling I’ve found, that it’s really old ffmpeg’s muxer bug.

    mplayer

    Than I’ve tried to use mplayer with LIVE_555 lib.

    mplayer -noframedrop -dumpfile ${output_file} -dumpstream ${stream_link}

    But I’ve got some errors too.

    Stream not seekable!
    Core dumped ;)

    Question

    I think I’m doing something wrong. It’s sounds really ridiculous, that there is no way to save rtsp stream in correct and playable video-file.

    Maybe there are some another tools which can help with that task ? Actually, I will be grateful for any advice for all kind of libs and languages. But that process should be automatic and have cli.

    Refinements

    Something about 50% experiments I’ve done on the localhost with vlc-streamer that emulates rtsp-broadcaster. Here is a manual which I try to follow.

    I have really fresh and latest ffmpeg with x264 support, that I’ve installed by that useful thread.