Recherche avancée

Médias (1)

Mot : - Tags -/punk

Autres articles (99)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • rtmpdump check status by command line

    2 mai 2014, par David

    I tried doing rtmpdump -r "rtmp-raw=rtmpe ://watch.playfooty.tv/live playpath=nba1569 swfUrl=http://www.playfooty.tv/play/player/player.swf live=1 pageUrl=http://www.playfooty.tv/"
    But the output it´s like offline always

    RTMPDump v2.2e
    (c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
    DEBUG: Parsing...
    WARNING: Unknown protocol!

    DEBUG: Parsed host : watch.playfooty.tv
    DEBUG: Parsed app : live playpath=nba1569 swfUrl=http:/
    DEBUG: Protocol : RTMP
    DEBUG: Hostname : watch.playfooty.tv
    DEBUG: Port : 1935
    DEBUG: Playpath : www.playfooty.tv/play/player/player.swf live=1 pageUrl=http://www.playfooty.tv/
    DEBUG: tcUrl : rtmp://watch.playfooty.tv:1935/live playpath=nba1569 swfUrl=http:/
    DEBUG: app : live playpath=nba1569 swfUrl=http:/
    DEBUG: live : no
    DEBUG: timeout : 30 sec

    I tried a lot of links of a list and seems offline with this command, but When I play it in a software it worked.

    Does anyone have an idea how to test if this kind of links are alive or die ?

    Thanks !

  • Streaming from an RTSP server using the ffmpeg library

    17 janvier 2017, par user92238

    I’m setting up an iOS app that needs to access a video stream from an RTSP server. Starting with the DFURTSPlayer example, I’ve been able to get a player partially working, but I’d really like to improve it in a couple of ways :

    1. The example program uses a timer to poll the video stream every
      1/30th of a second to see if there is a new video frame available
      (it calls av_read_frame in a loop until a frame appears). This seems
      very inefficient, and it has the potential to lock my app up if the
      stream fails. Is there a way I can set up a callback so I can
      process frames only when they arrive ?
    2. The example provides a crude "player" that is actually converting
      each frame into a UIImage and then displaying it in a UIImageView. I
      would like to convert the stream into an AVAsset, so I can pass it
      to a regular video player, as well as use it with other AVFoundation
      classes. Is there any existing code that does this ?

    Thanks,
    Frank

  • Why can’t VLC go in to fullscreen mode ?

    31 mai 2017, par matiastofteby

    I’m working on a Matlab application that uses a VLC class to control a VLC-instance. One of the features is to set the VLC player to fullscreen. This feature works perfectly fine.

    The VLC player is downloaded from Matlab’s File Exchange : https://se.mathworks.com/matlabcentral/fileexchange/56215-vlc (Thanks a lot Léa Strobino)

    However, one particular clip insists on resizing the player to a smaller size.
    I have done some research and it turns out that this is a common problem in some VLC versions.

    Normal workarounds are to uncheck the “adapt interface to video size” (something like that) and to check the “Fullscreen” box.
    This ought to make the player open in fullscreen and not resize the screen to video size. The video still resizes the player to a smaller size.

    All the specs of the clips are the same : Same file extension (.vob), formats and were made the same way (I did some video trimming and such using ffmpeg – but the same way every time).

    I have noticed one difference and that is that this particular video has a lower Data and bitrate ( 1000-1500kbps) where as the others are higher (<4000kbps). Also when showing the properties of the clip the frame height and width are blank as opposed to the others that have specific values.

    This should however not have an effect of the fullscreen command from Matlab called after loading the video into the playlist. The command has no effect on this video, but does on all other.

    It is possible to set the player to fullscreen manually by clicking the window, so it is not caused by some restriction in the video not allowing it to fullscreen.

    Why does the video refuse to go in to fullscreen ?

    Hope somebody is able to help.