Difference between revisions of "RealMedia"

From VideoLAN Wiki
Jump to navigation Jump to search
(Sipr might not be supported: incorrect, but it was not documented explicitly in the VLC changelog. libavcodec supports it as of 0.6 (2010-05-04), adding references)
(→‎Source code: This link was broken since VLC 1.1.0, fixing)
Line 22: Line 22:
  
 
== Source code ==
 
== Source code ==
{{file|modules/demux/real.c|input demuxer}}
+
{{File|modules/codec/avcodec/fourcc.c|from [[libavcodec]]}}

Revision as of 06:12, 18 February 2019

real
VLC can decode this container.
The module name to use at the command line is real, but you can also use rm.

RealMedia is a type of file designed by RealNetworks, and can be played with the proprietary RealPlayer. RealPlayer is available for Windows, macOS and Linux. Additionally, Helix Player may be able to play some files, but it lacks the proprietary codecs in some realmedia files.

RealMedia files are normally streamed over RTSP connections.

RealAlternative installs, and allows RealMedia files to be played in Media Player Classic.

Accepted codecs

  • rv: RealVideo
  • ra: MPEG-4 audio
  • a52, dnet: A/52 audio
  • cook: Cook audio codec
  • 28_8: 28.8 audio codec
  • sipr, RealAudio 4/5 (name is from Sipro Lab Telecom ACELP-NET)

Compatibility

Currently, VLC media player should be able to play most audio and video of .rm, .rmvb files.

Sipr is supported through libavcodec (Search for sipr in either of these files: [1][2]. It is not mentioned in NEWS)

Source code