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

deploy.bat 735B

1234567891011121314151617181920212223242526272829303132333435363738
  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. VideoDownload.py
  21. enigma2_api.py
  22. content\__ini__.py
  23. content\ContentSources.py
  24. content\resolver.py
  25. content\util.py
  26. content\run.py
  27. content\Downloader.py
  28. content\playstreamproxy.py
  29. content\offline.mp4
  30. content\demjson.py
  31. content\sources\*.py
  32. content\resolvers\*.py
  33. locale\*
  34. ) do echo f | xcopy /y %%f %TARGET%%%f
  35. xcopy /y /q content\picons\* %TARGET%picons\
  36. pause