Enigma2 plugin to to play various online streams (mostly Latvian).

protocol.py 776B

1234567891011121314151617181920
  1. # coding: utf-8
  2. # Copyright 2014 Globo.com Player authors. All rights reserved.
  3. # Use of this source code is governed by a MIT License
  4. # license that can be found in the LICENSE file.
  5. ext_x_targetduration = '#EXT-X-TARGETDURATION'
  6. ext_x_media_sequence = '#EXT-X-MEDIA-SEQUENCE'
  7. ext_x_program_date_time = '#EXT-X-PROGRAM-DATE-TIME'
  8. ext_x_media = '#EXT-X-MEDIA'
  9. ext_x_playlist_type = '#EXT-X-PLAYLIST-TYPE'
  10. ext_x_key = '#EXT-X-KEY'
  11. ext_x_stream_inf = '#EXT-X-STREAM-INF'
  12. ext_x_version = '#EXT-X-VERSION'
  13. ext_x_allow_cache = '#EXT-X-ALLOW-CACHE'
  14. ext_x_endlist = '#EXT-X-ENDLIST'
  15. extinf = '#EXTINF'
  16. ext_i_frames_only = '#EXT-X-I-FRAMES-ONLY'
  17. ext_x_byterange = '#EXT-X-BYTERANGE'
  18. ext_x_i_frame_stream_inf = '#EXT-X-I-FRAME-STREAM-INF'
  19. ext_x_discontinuity = '#EXT-X-DISCONTINUITY'