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

deploy.bat 583B

123456789101112131415161718192021222324252627282930313233343536
  1. @echo off
  2. set dm=dm800se
  3. if (dm800se)==(%1%) (
  4. set TARGET=v:\usr\lib\enigma2\python\Plugins\Extensions\PlayStream\
  5. ) else if (dm500hd)==(%1%) (
  6. set TARGET=u:\usr\lib\enigma2\python\Plugins\Extensions\PlayStream\
  7. ) else (
  8. echo Not valid dreambox name
  9. pause
  10. GOTO:EOF
  11. )
  12. for %%f in (
  13. __init__.py
  14. plugin.py
  15. plugin_locale.py
  16. plugin.png
  17. skin.xml
  18. PlayStream.py
  19. PlayStream.png
  20. ContentSources.py
  21. VideoDownload.py
  22. Downloader.py
  23. enigma2_api.py
  24. resolver.py
  25. util.py
  26. playstreamproxy.py
  27. offline.mp4
  28. sources\*.py
  29. resolvers\*.py
  30. picons\*
  31. locale\*
  32. ) do echo f | xcopy /y %%f %TARGET%%%f
  33. pause