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

deploy.bat 556B

12345678910111213141516171819202122232425262728293031323334
  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.png
  16. PlayStream.py
  17. PlayStream.png
  18. ContentSources.py
  19. ChoiceBox.py
  20. VideoDownload.py
  21. enigma2_api.py
  22. resolver.py
  23. util.py
  24. playstreamproxy.py
  25. offline.mp4
  26. sources\*.py
  27. resolvers\*.py
  28. picons\*
  29. locale\*
  30. ) do echo f | xcopy /y %%f %TARGET%%%f
  31. pause