├── .github └── workflows │ └── CI.yml ├── .gitignore ├── AUTHORS ├── CHANGELOG ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── conf-dist.ini ├── conf.ini ├── docs ├── README.md ├── git-flow.jpg ├── icons │ ├── 128x128 │ │ └── galicaster.png │ ├── 16x16 │ │ └── galicaster.png │ ├── 192x192 │ │ └── galicaster.png │ ├── 22x22 │ │ └── galicaster.png │ ├── 24x24 │ │ └── galicaster.png │ ├── 256x256 │ │ └── galicaster.png │ ├── 32x32 │ │ └── galicaster.png │ ├── 36x36 │ │ └── galicaster.png │ ├── 48x48 │ │ └── galicaster.png │ ├── 64x64 │ │ └── galicaster.png │ ├── 72x72 │ │ └── galicaster.png │ └── 96x96 │ │ └── galicaster.png └── scripts │ ├── run_dashboard_push.py │ └── scheduler.py ├── galicaster ├── __init__.py ├── classui │ ├── __init__.py │ ├── calendarwindow.py │ ├── distrib.py │ ├── elements │ │ ├── __init__.py │ │ └── message_header.py │ ├── listing.py │ ├── mainwindow.py │ ├── managerui.py │ ├── message.py │ ├── metadata.py │ ├── playerui.py │ ├── profile.py │ ├── recorderui.py │ └── strip.py ├── core │ ├── __init__.py │ ├── conf.py │ ├── context.py │ ├── core.py │ ├── dispatcher.py │ ├── logger.py │ └── worker.py ├── mediapackage │ ├── __init__.py │ ├── deserializer.py │ ├── mediapackage.py │ ├── repository.py │ ├── serializer.py │ └── utils.py ├── opencast │ ├── __init__.py │ ├── client.py │ ├── series.py │ └── service.py ├── player │ ├── __init__.py │ └── player.py ├── plugins │ ├── __init__.py │ ├── appearance.py │ ├── checkrepo.py │ ├── checkspace.py │ ├── cleanstale.py │ ├── failovermic.py │ ├── forcedurationrec.py │ ├── hidetabs.py │ ├── keyboard.py │ ├── lockscreen.py │ ├── lowaudio.py │ ├── muteinputs.py │ ├── noaudiodialog.py │ ├── notifycrash.py │ ├── rest.py │ ├── retryingest.py │ ├── screensaver.py │ ├── script_button.py │ ├── setuprecording.py │ └── shortcuts.py ├── recorder │ ├── __init__.py │ ├── base.py │ ├── bins │ │ ├── __init__.py │ │ ├── audiotest.py │ │ ├── autoaudio.py │ │ ├── blackmagic.py │ │ ├── custom.py │ │ ├── datapath.py │ │ ├── epiphan.py │ │ ├── firewire.py │ │ ├── firewire_renc.py │ │ ├── firewireavi.py │ │ ├── hauppauge.py │ │ ├── multistream.py │ │ ├── ndi.py │ │ ├── ndi_audio.py │ │ ├── oldblackmagic.py │ │ ├── pulse.py │ │ ├── rtp.py │ │ ├── rtpraw.py │ │ ├── screen.py │ │ ├── v4l2.py │ │ ├── vga2usb.py │ │ └── videotest.py │ ├── recorder.py │ ├── service.py │ └── utils.py ├── scheduler │ ├── __init__.py │ ├── heartbeat.py │ └── scheduler.py └── utils │ ├── __init__.py │ ├── beep.py │ ├── dbusservice.py │ ├── gstreamer.py │ ├── i18n.py │ ├── ical.py │ ├── mediainfo.py │ ├── miscellaneous.py │ ├── nautilus.py │ ├── queuethread.py │ ├── readable.py │ ├── resize.py │ ├── shutdown.py │ ├── sidebyside.py │ ├── systemcalls.py │ └── validator.py ├── i18n ├── es_ES │ ├── LC_MESSAGES │ │ └── galicaster.mo │ └── galicaster.po ├── fr_FR │ ├── LC_MESSAGES │ │ └── galicaster.mo │ └── galicaster.po ├── galicaster.pot ├── nl_BE │ └── galicaster.po └── sl_SL │ └── galicaster.po ├── license.txt ├── logs └── .gitignore ├── profiles └── .gitignore ├── resources ├── background │ ├── bg-1024x768.png │ ├── bg-800x600.png │ └── bg.png ├── images │ ├── galicaster.svg │ ├── gc-pause.svg │ ├── gc-stop.svg │ ├── icon.png │ ├── logo.svg │ ├── no_vga.png │ ├── pause-dark.svg │ └── teltek.svg └── ui │ ├── about.glade │ ├── delete.glade │ ├── distrib.glade │ ├── error.glade │ ├── help.glade │ ├── info.glade │ ├── listing.glade │ ├── lockscreen.glade │ ├── metadata.glade │ ├── next.glade │ ├── okwarning.glade │ ├── openfile.glade │ ├── operations.glade │ ├── paused.glade │ ├── player.glade │ ├── quit.glade │ ├── recorder.glade │ ├── stop.glade │ ├── strip.glade │ ├── style.css │ └── warning.glade ├── run_galicaster.py ├── setup.py └── tests ├── __init__.py ├── core ├── __init__.py ├── conf.py ├── context.py ├── dispatcher.py ├── profile.py └── worker.py ├── functional ├── __init__.py └── recording.py ├── mediapackage ├── __init__.py ├── mediapackage.py ├── repository.py └── serializer.py ├── opencast ├── __init__.py └── client.py ├── player ├── __init__.py └── player.py ├── plugins ├── __init__.py └── cleanstale.py ├── recorder ├── __init__.py ├── base.py ├── bins.py ├── recorder.py ├── recorder_autoaudio.py ├── recorder_blackmagic.py ├── recorder_datapath.py ├── recorder_firewire.py ├── recorder_firewire_renc.py ├── recorder_firewireavi.py ├── recorder_pulse.py ├── recorder_v4l2.py └── service.py ├── resources ├── conf │ ├── conf-dist.ini │ ├── conf.ini │ ├── conf_active.ini │ ├── conf_basic.ini │ ├── functional_test.ini │ ├── no_screen.ini │ ├── one_device.ini │ ├── profile.ini │ └── profiles │ │ └── .gitignore ├── ical │ ├── create_mp_original.ical │ ├── create_mp_updated.ical │ ├── none.ical │ ├── past_unordered_events.ical │ ├── past_unordered_eventsv2.ical │ ├── test.ical │ ├── test_update.ical │ ├── testv2.ical │ └── testv2_update.ical ├── mediapackage │ ├── CAMERA.mpeg │ ├── SCREEN.mpeg │ ├── attachment.txt │ ├── episode.xml │ ├── galicaster.json │ ├── manifest.xml │ ├── org.opencastproject.capture.agent.properties │ ├── series.xml │ └── wrongmp │ │ ├── CAMERA.mpeg │ │ ├── SCREEN.mpeg │ │ ├── attachment.txt │ │ ├── episode.xml │ │ ├── manifest.xml │ │ └── org.opencastproject.capture.agent.properties ├── profile │ ├── conf-dist.ini │ ├── conf_bad.ini │ ├── conf_good.ini │ └── folder │ │ ├── just_audio.ini │ │ ├── test.ini │ │ └── test2.ini ├── repository │ ├── a │ │ ├── CAMERA.mpeg │ │ ├── SCREEN.mpeg │ │ ├── episode.xml │ │ ├── galicaster.json │ │ ├── manifest.xml │ │ ├── org.opencastproject.capture.agent.properties │ │ └── series.xml │ ├── b │ │ ├── CAMERA.mpeg │ │ ├── SCREEN.mpeg │ │ ├── episode.xml │ │ ├── galicaster.json │ │ ├── manifest.xml │ │ └── series.xml │ ├── bad │ │ ├── CAMERA.mpeg │ │ ├── SCREEN_bad.mpeg │ │ ├── episode.xml │ │ ├── galicaster.xml │ │ └── manifest.xml │ ├── c │ │ ├── CAMERA.mpeg │ │ ├── SCREEN.mpeg │ │ ├── episode.xml │ │ ├── galicaster.json │ │ ├── manifest.xml │ │ └── series.xml │ ├── d │ │ ├── CAMERA.mpeg │ │ ├── episode.xml │ │ ├── galicaster.json │ │ ├── manifest.xml │ │ ├── org.opencastproject.capture.agent.properties │ │ └── series.xml │ └── e │ │ ├── CAMERA.mpeg │ │ ├── SCREEN.mpeg │ │ ├── episode.xml │ │ ├── galicaster.json │ │ ├── manifest.xml │ │ └── series.xml ├── sbs │ ├── AUDIO.mp3 │ ├── CAMERA.mp4 │ ├── CAMERA_NO_AUDIO.mp4 │ ├── SCREEN.mp4 │ └── SCREEN_NO_AUDIO.mp4 └── utils │ └── temporary_recording │ ├── CAMERA.mpeg │ ├── SCREEN.mpeg │ ├── episode.xml │ ├── galicaster.xml │ ├── info.json │ ├── manifest.xml │ └── series.xml ├── scheduler ├── __init__.py └── heartbeat.py └── utils ├── __init__.py ├── ical.py ├── mediainfo.py ├── miscellaneous.py ├── nautilus.py ├── readable.py ├── sidebyside.py ├── systemcalls.py └── validator.py /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/README.md -------------------------------------------------------------------------------- /conf-dist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/conf-dist.ini -------------------------------------------------------------------------------- /conf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/conf.ini -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/git-flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/docs/git-flow.jpg -------------------------------------------------------------------------------- /docs/icons/128x128/galicaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/docs/icons/128x128/galicaster.png -------------------------------------------------------------------------------- /docs/icons/16x16/galicaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/docs/icons/16x16/galicaster.png -------------------------------------------------------------------------------- /docs/icons/192x192/galicaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/docs/icons/192x192/galicaster.png -------------------------------------------------------------------------------- /docs/icons/22x22/galicaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/docs/icons/22x22/galicaster.png -------------------------------------------------------------------------------- /docs/icons/24x24/galicaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/docs/icons/24x24/galicaster.png -------------------------------------------------------------------------------- /docs/icons/256x256/galicaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/docs/icons/256x256/galicaster.png -------------------------------------------------------------------------------- /docs/icons/32x32/galicaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/docs/icons/32x32/galicaster.png -------------------------------------------------------------------------------- /docs/icons/36x36/galicaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/docs/icons/36x36/galicaster.png -------------------------------------------------------------------------------- /docs/icons/48x48/galicaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/docs/icons/48x48/galicaster.png -------------------------------------------------------------------------------- /docs/icons/64x64/galicaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/docs/icons/64x64/galicaster.png -------------------------------------------------------------------------------- /docs/icons/72x72/galicaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/docs/icons/72x72/galicaster.png -------------------------------------------------------------------------------- /docs/icons/96x96/galicaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/docs/icons/96x96/galicaster.png -------------------------------------------------------------------------------- /docs/scripts/run_dashboard_push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/docs/scripts/run_dashboard_push.py -------------------------------------------------------------------------------- /docs/scripts/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/docs/scripts/scheduler.py -------------------------------------------------------------------------------- /galicaster/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/__init__.py -------------------------------------------------------------------------------- /galicaster/classui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/classui/__init__.py -------------------------------------------------------------------------------- /galicaster/classui/calendarwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/classui/calendarwindow.py -------------------------------------------------------------------------------- /galicaster/classui/distrib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/classui/distrib.py -------------------------------------------------------------------------------- /galicaster/classui/elements/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /galicaster/classui/elements/message_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/classui/elements/message_header.py -------------------------------------------------------------------------------- /galicaster/classui/listing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/classui/listing.py -------------------------------------------------------------------------------- /galicaster/classui/mainwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/classui/mainwindow.py -------------------------------------------------------------------------------- /galicaster/classui/managerui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/classui/managerui.py -------------------------------------------------------------------------------- /galicaster/classui/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/classui/message.py -------------------------------------------------------------------------------- /galicaster/classui/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/classui/metadata.py -------------------------------------------------------------------------------- /galicaster/classui/playerui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/classui/playerui.py -------------------------------------------------------------------------------- /galicaster/classui/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/classui/profile.py -------------------------------------------------------------------------------- /galicaster/classui/recorderui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/classui/recorderui.py -------------------------------------------------------------------------------- /galicaster/classui/strip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/classui/strip.py -------------------------------------------------------------------------------- /galicaster/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/core/__init__.py -------------------------------------------------------------------------------- /galicaster/core/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/core/conf.py -------------------------------------------------------------------------------- /galicaster/core/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/core/context.py -------------------------------------------------------------------------------- /galicaster/core/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/core/core.py -------------------------------------------------------------------------------- /galicaster/core/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/core/dispatcher.py -------------------------------------------------------------------------------- /galicaster/core/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/core/logger.py -------------------------------------------------------------------------------- /galicaster/core/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/core/worker.py -------------------------------------------------------------------------------- /galicaster/mediapackage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/mediapackage/__init__.py -------------------------------------------------------------------------------- /galicaster/mediapackage/deserializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/mediapackage/deserializer.py -------------------------------------------------------------------------------- /galicaster/mediapackage/mediapackage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/mediapackage/mediapackage.py -------------------------------------------------------------------------------- /galicaster/mediapackage/repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/mediapackage/repository.py -------------------------------------------------------------------------------- /galicaster/mediapackage/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/mediapackage/serializer.py -------------------------------------------------------------------------------- /galicaster/mediapackage/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/mediapackage/utils.py -------------------------------------------------------------------------------- /galicaster/opencast/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/opencast/__init__.py -------------------------------------------------------------------------------- /galicaster/opencast/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/opencast/client.py -------------------------------------------------------------------------------- /galicaster/opencast/series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/opencast/series.py -------------------------------------------------------------------------------- /galicaster/opencast/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/opencast/service.py -------------------------------------------------------------------------------- /galicaster/player/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/player/__init__.py -------------------------------------------------------------------------------- /galicaster/player/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/player/player.py -------------------------------------------------------------------------------- /galicaster/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/plugins/__init__.py -------------------------------------------------------------------------------- /galicaster/plugins/appearance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/plugins/appearance.py -------------------------------------------------------------------------------- /galicaster/plugins/checkrepo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/plugins/checkrepo.py -------------------------------------------------------------------------------- /galicaster/plugins/checkspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/plugins/checkspace.py -------------------------------------------------------------------------------- /galicaster/plugins/cleanstale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/plugins/cleanstale.py -------------------------------------------------------------------------------- /galicaster/plugins/failovermic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/plugins/failovermic.py -------------------------------------------------------------------------------- /galicaster/plugins/forcedurationrec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/plugins/forcedurationrec.py -------------------------------------------------------------------------------- /galicaster/plugins/hidetabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/plugins/hidetabs.py -------------------------------------------------------------------------------- /galicaster/plugins/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/plugins/keyboard.py -------------------------------------------------------------------------------- /galicaster/plugins/lockscreen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/plugins/lockscreen.py -------------------------------------------------------------------------------- /galicaster/plugins/lowaudio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/plugins/lowaudio.py -------------------------------------------------------------------------------- /galicaster/plugins/muteinputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/plugins/muteinputs.py -------------------------------------------------------------------------------- /galicaster/plugins/noaudiodialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/plugins/noaudiodialog.py -------------------------------------------------------------------------------- /galicaster/plugins/notifycrash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/plugins/notifycrash.py -------------------------------------------------------------------------------- /galicaster/plugins/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/plugins/rest.py -------------------------------------------------------------------------------- /galicaster/plugins/retryingest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/plugins/retryingest.py -------------------------------------------------------------------------------- /galicaster/plugins/screensaver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/plugins/screensaver.py -------------------------------------------------------------------------------- /galicaster/plugins/script_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/plugins/script_button.py -------------------------------------------------------------------------------- /galicaster/plugins/setuprecording.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/plugins/setuprecording.py -------------------------------------------------------------------------------- /galicaster/plugins/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/plugins/shortcuts.py -------------------------------------------------------------------------------- /galicaster/recorder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/recorder/__init__.py -------------------------------------------------------------------------------- /galicaster/recorder/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/recorder/base.py -------------------------------------------------------------------------------- /galicaster/recorder/bins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/recorder/bins/__init__.py -------------------------------------------------------------------------------- /galicaster/recorder/bins/audiotest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/recorder/bins/audiotest.py -------------------------------------------------------------------------------- /galicaster/recorder/bins/autoaudio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/recorder/bins/autoaudio.py -------------------------------------------------------------------------------- /galicaster/recorder/bins/blackmagic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/recorder/bins/blackmagic.py -------------------------------------------------------------------------------- /galicaster/recorder/bins/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/recorder/bins/custom.py -------------------------------------------------------------------------------- /galicaster/recorder/bins/datapath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/recorder/bins/datapath.py -------------------------------------------------------------------------------- /galicaster/recorder/bins/epiphan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/recorder/bins/epiphan.py -------------------------------------------------------------------------------- /galicaster/recorder/bins/firewire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/recorder/bins/firewire.py -------------------------------------------------------------------------------- /galicaster/recorder/bins/firewire_renc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/recorder/bins/firewire_renc.py -------------------------------------------------------------------------------- /galicaster/recorder/bins/firewireavi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/recorder/bins/firewireavi.py -------------------------------------------------------------------------------- /galicaster/recorder/bins/hauppauge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/recorder/bins/hauppauge.py -------------------------------------------------------------------------------- /galicaster/recorder/bins/multistream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/recorder/bins/multistream.py -------------------------------------------------------------------------------- /galicaster/recorder/bins/ndi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/recorder/bins/ndi.py -------------------------------------------------------------------------------- /galicaster/recorder/bins/ndi_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/recorder/bins/ndi_audio.py -------------------------------------------------------------------------------- /galicaster/recorder/bins/oldblackmagic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/recorder/bins/oldblackmagic.py -------------------------------------------------------------------------------- /galicaster/recorder/bins/pulse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/recorder/bins/pulse.py -------------------------------------------------------------------------------- /galicaster/recorder/bins/rtp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/recorder/bins/rtp.py -------------------------------------------------------------------------------- /galicaster/recorder/bins/rtpraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/recorder/bins/rtpraw.py -------------------------------------------------------------------------------- /galicaster/recorder/bins/screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/recorder/bins/screen.py -------------------------------------------------------------------------------- /galicaster/recorder/bins/v4l2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/recorder/bins/v4l2.py -------------------------------------------------------------------------------- /galicaster/recorder/bins/vga2usb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/recorder/bins/vga2usb.py -------------------------------------------------------------------------------- /galicaster/recorder/bins/videotest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/recorder/bins/videotest.py -------------------------------------------------------------------------------- /galicaster/recorder/recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/recorder/recorder.py -------------------------------------------------------------------------------- /galicaster/recorder/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/recorder/service.py -------------------------------------------------------------------------------- /galicaster/recorder/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/recorder/utils.py -------------------------------------------------------------------------------- /galicaster/scheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/scheduler/__init__.py -------------------------------------------------------------------------------- /galicaster/scheduler/heartbeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/scheduler/heartbeat.py -------------------------------------------------------------------------------- /galicaster/scheduler/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/scheduler/scheduler.py -------------------------------------------------------------------------------- /galicaster/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/utils/__init__.py -------------------------------------------------------------------------------- /galicaster/utils/beep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/utils/beep.py -------------------------------------------------------------------------------- /galicaster/utils/dbusservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/utils/dbusservice.py -------------------------------------------------------------------------------- /galicaster/utils/gstreamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/utils/gstreamer.py -------------------------------------------------------------------------------- /galicaster/utils/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/utils/i18n.py -------------------------------------------------------------------------------- /galicaster/utils/ical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/utils/ical.py -------------------------------------------------------------------------------- /galicaster/utils/mediainfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/utils/mediainfo.py -------------------------------------------------------------------------------- /galicaster/utils/miscellaneous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/utils/miscellaneous.py -------------------------------------------------------------------------------- /galicaster/utils/nautilus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/utils/nautilus.py -------------------------------------------------------------------------------- /galicaster/utils/queuethread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/utils/queuethread.py -------------------------------------------------------------------------------- /galicaster/utils/readable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/utils/readable.py -------------------------------------------------------------------------------- /galicaster/utils/resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/utils/resize.py -------------------------------------------------------------------------------- /galicaster/utils/shutdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/utils/shutdown.py -------------------------------------------------------------------------------- /galicaster/utils/sidebyside.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/utils/sidebyside.py -------------------------------------------------------------------------------- /galicaster/utils/systemcalls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/utils/systemcalls.py -------------------------------------------------------------------------------- /galicaster/utils/validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/galicaster/utils/validator.py -------------------------------------------------------------------------------- /i18n/es_ES/LC_MESSAGES/galicaster.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/i18n/es_ES/LC_MESSAGES/galicaster.mo -------------------------------------------------------------------------------- /i18n/es_ES/galicaster.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/i18n/es_ES/galicaster.po -------------------------------------------------------------------------------- /i18n/fr_FR/LC_MESSAGES/galicaster.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/i18n/fr_FR/LC_MESSAGES/galicaster.mo -------------------------------------------------------------------------------- /i18n/fr_FR/galicaster.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/i18n/fr_FR/galicaster.po -------------------------------------------------------------------------------- /i18n/galicaster.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/i18n/galicaster.pot -------------------------------------------------------------------------------- /i18n/nl_BE/galicaster.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/i18n/nl_BE/galicaster.po -------------------------------------------------------------------------------- /i18n/sl_SL/galicaster.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/i18n/sl_SL/galicaster.po -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/license.txt -------------------------------------------------------------------------------- /logs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/logs/.gitignore -------------------------------------------------------------------------------- /profiles/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/background/bg-1024x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/background/bg-1024x768.png -------------------------------------------------------------------------------- /resources/background/bg-800x600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/background/bg-800x600.png -------------------------------------------------------------------------------- /resources/background/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/background/bg.png -------------------------------------------------------------------------------- /resources/images/galicaster.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/images/galicaster.svg -------------------------------------------------------------------------------- /resources/images/gc-pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/images/gc-pause.svg -------------------------------------------------------------------------------- /resources/images/gc-stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/images/gc-stop.svg -------------------------------------------------------------------------------- /resources/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/images/icon.png -------------------------------------------------------------------------------- /resources/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/images/logo.svg -------------------------------------------------------------------------------- /resources/images/no_vga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/images/no_vga.png -------------------------------------------------------------------------------- /resources/images/pause-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/images/pause-dark.svg -------------------------------------------------------------------------------- /resources/images/teltek.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/images/teltek.svg -------------------------------------------------------------------------------- /resources/ui/about.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/ui/about.glade -------------------------------------------------------------------------------- /resources/ui/delete.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/ui/delete.glade -------------------------------------------------------------------------------- /resources/ui/distrib.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/ui/distrib.glade -------------------------------------------------------------------------------- /resources/ui/error.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/ui/error.glade -------------------------------------------------------------------------------- /resources/ui/help.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/ui/help.glade -------------------------------------------------------------------------------- /resources/ui/info.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/ui/info.glade -------------------------------------------------------------------------------- /resources/ui/listing.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/ui/listing.glade -------------------------------------------------------------------------------- /resources/ui/lockscreen.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/ui/lockscreen.glade -------------------------------------------------------------------------------- /resources/ui/metadata.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/ui/metadata.glade -------------------------------------------------------------------------------- /resources/ui/next.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/ui/next.glade -------------------------------------------------------------------------------- /resources/ui/okwarning.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/ui/okwarning.glade -------------------------------------------------------------------------------- /resources/ui/openfile.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/ui/openfile.glade -------------------------------------------------------------------------------- /resources/ui/operations.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/ui/operations.glade -------------------------------------------------------------------------------- /resources/ui/paused.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/ui/paused.glade -------------------------------------------------------------------------------- /resources/ui/player.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/ui/player.glade -------------------------------------------------------------------------------- /resources/ui/quit.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/ui/quit.glade -------------------------------------------------------------------------------- /resources/ui/recorder.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/ui/recorder.glade -------------------------------------------------------------------------------- /resources/ui/stop.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/ui/stop.glade -------------------------------------------------------------------------------- /resources/ui/strip.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/ui/strip.glade -------------------------------------------------------------------------------- /resources/ui/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/ui/style.css -------------------------------------------------------------------------------- /resources/ui/warning.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/resources/ui/warning.glade -------------------------------------------------------------------------------- /run_galicaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/run_galicaster.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/core/__init__.py -------------------------------------------------------------------------------- /tests/core/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/core/conf.py -------------------------------------------------------------------------------- /tests/core/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/core/context.py -------------------------------------------------------------------------------- /tests/core/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/core/dispatcher.py -------------------------------------------------------------------------------- /tests/core/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/core/profile.py -------------------------------------------------------------------------------- /tests/core/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/core/worker.py -------------------------------------------------------------------------------- /tests/functional/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/functional/__init__.py -------------------------------------------------------------------------------- /tests/functional/recording.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/functional/recording.py -------------------------------------------------------------------------------- /tests/mediapackage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/mediapackage/__init__.py -------------------------------------------------------------------------------- /tests/mediapackage/mediapackage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/mediapackage/mediapackage.py -------------------------------------------------------------------------------- /tests/mediapackage/repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/mediapackage/repository.py -------------------------------------------------------------------------------- /tests/mediapackage/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/mediapackage/serializer.py -------------------------------------------------------------------------------- /tests/opencast/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/opencast/__init__.py -------------------------------------------------------------------------------- /tests/opencast/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/opencast/client.py -------------------------------------------------------------------------------- /tests/player/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/player/__init__.py -------------------------------------------------------------------------------- /tests/player/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/player/player.py -------------------------------------------------------------------------------- /tests/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/plugins/__init__.py -------------------------------------------------------------------------------- /tests/plugins/cleanstale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/plugins/cleanstale.py -------------------------------------------------------------------------------- /tests/recorder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/recorder/__init__.py -------------------------------------------------------------------------------- /tests/recorder/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/recorder/base.py -------------------------------------------------------------------------------- /tests/recorder/bins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/recorder/bins.py -------------------------------------------------------------------------------- /tests/recorder/recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/recorder/recorder.py -------------------------------------------------------------------------------- /tests/recorder/recorder_autoaudio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/recorder/recorder_autoaudio.py -------------------------------------------------------------------------------- /tests/recorder/recorder_blackmagic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/recorder/recorder_blackmagic.py -------------------------------------------------------------------------------- /tests/recorder/recorder_datapath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/recorder/recorder_datapath.py -------------------------------------------------------------------------------- /tests/recorder/recorder_firewire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/recorder/recorder_firewire.py -------------------------------------------------------------------------------- /tests/recorder/recorder_firewire_renc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/recorder/recorder_firewire_renc.py -------------------------------------------------------------------------------- /tests/recorder/recorder_firewireavi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/recorder/recorder_firewireavi.py -------------------------------------------------------------------------------- /tests/recorder/recorder_pulse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/recorder/recorder_pulse.py -------------------------------------------------------------------------------- /tests/recorder/recorder_v4l2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/recorder/recorder_v4l2.py -------------------------------------------------------------------------------- /tests/recorder/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/recorder/service.py -------------------------------------------------------------------------------- /tests/resources/conf/conf-dist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/conf/conf-dist.ini -------------------------------------------------------------------------------- /tests/resources/conf/conf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/conf/conf.ini -------------------------------------------------------------------------------- /tests/resources/conf/conf_active.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/conf/conf_active.ini -------------------------------------------------------------------------------- /tests/resources/conf/conf_basic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/conf/conf_basic.ini -------------------------------------------------------------------------------- /tests/resources/conf/functional_test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/conf/functional_test.ini -------------------------------------------------------------------------------- /tests/resources/conf/no_screen.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/conf/no_screen.ini -------------------------------------------------------------------------------- /tests/resources/conf/one_device.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/conf/one_device.ini -------------------------------------------------------------------------------- /tests/resources/conf/profile.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/conf/profile.ini -------------------------------------------------------------------------------- /tests/resources/conf/profiles/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/ical/create_mp_original.ical: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/ical/create_mp_original.ical -------------------------------------------------------------------------------- /tests/resources/ical/create_mp_updated.ical: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/ical/create_mp_updated.ical -------------------------------------------------------------------------------- /tests/resources/ical/none.ical: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/ical/none.ical -------------------------------------------------------------------------------- /tests/resources/ical/past_unordered_events.ical: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/ical/past_unordered_events.ical -------------------------------------------------------------------------------- /tests/resources/ical/past_unordered_eventsv2.ical: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/ical/past_unordered_eventsv2.ical -------------------------------------------------------------------------------- /tests/resources/ical/test.ical: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/ical/test.ical -------------------------------------------------------------------------------- /tests/resources/ical/test_update.ical: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/ical/test_update.ical -------------------------------------------------------------------------------- /tests/resources/ical/testv2.ical: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/ical/testv2.ical -------------------------------------------------------------------------------- /tests/resources/ical/testv2_update.ical: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/ical/testv2_update.ical -------------------------------------------------------------------------------- /tests/resources/mediapackage/CAMERA.mpeg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/mediapackage/SCREEN.mpeg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/mediapackage/attachment.txt: -------------------------------------------------------------------------------- 1 | This is an attachment -------------------------------------------------------------------------------- /tests/resources/mediapackage/episode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/mediapackage/episode.xml -------------------------------------------------------------------------------- /tests/resources/mediapackage/galicaster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/mediapackage/galicaster.json -------------------------------------------------------------------------------- /tests/resources/mediapackage/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/mediapackage/manifest.xml -------------------------------------------------------------------------------- /tests/resources/mediapackage/org.opencastproject.capture.agent.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/mediapackage/org.opencastproject.capture.agent.properties -------------------------------------------------------------------------------- /tests/resources/mediapackage/series.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/mediapackage/series.xml -------------------------------------------------------------------------------- /tests/resources/mediapackage/wrongmp/CAMERA.mpeg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/mediapackage/wrongmp/SCREEN.mpeg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/mediapackage/wrongmp/attachment.txt: -------------------------------------------------------------------------------- 1 | This is an attachment -------------------------------------------------------------------------------- /tests/resources/mediapackage/wrongmp/episode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/mediapackage/wrongmp/episode.xml -------------------------------------------------------------------------------- /tests/resources/mediapackage/wrongmp/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/mediapackage/wrongmp/manifest.xml -------------------------------------------------------------------------------- /tests/resources/mediapackage/wrongmp/org.opencastproject.capture.agent.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/mediapackage/wrongmp/org.opencastproject.capture.agent.properties -------------------------------------------------------------------------------- /tests/resources/profile/conf-dist.ini: -------------------------------------------------------------------------------- 1 | [basic] 2 | profile= test -------------------------------------------------------------------------------- /tests/resources/profile/conf_bad.ini: -------------------------------------------------------------------------------- 1 | [basic] 2 | profile= test -------------------------------------------------------------------------------- /tests/resources/profile/conf_good.ini: -------------------------------------------------------------------------------- 1 | [basic] 2 | profile= test -------------------------------------------------------------------------------- /tests/resources/profile/folder/just_audio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/profile/folder/just_audio.ini -------------------------------------------------------------------------------- /tests/resources/profile/folder/test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/profile/folder/test.ini -------------------------------------------------------------------------------- /tests/resources/profile/folder/test2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/profile/folder/test2.ini -------------------------------------------------------------------------------- /tests/resources/repository/a/CAMERA.mpeg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/repository/a/SCREEN.mpeg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/repository/a/episode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/repository/a/episode.xml -------------------------------------------------------------------------------- /tests/resources/repository/a/galicaster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/repository/a/galicaster.json -------------------------------------------------------------------------------- /tests/resources/repository/a/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/repository/a/manifest.xml -------------------------------------------------------------------------------- /tests/resources/repository/a/org.opencastproject.capture.agent.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/repository/a/org.opencastproject.capture.agent.properties -------------------------------------------------------------------------------- /tests/resources/repository/a/series.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/repository/a/series.xml -------------------------------------------------------------------------------- /tests/resources/repository/b/CAMERA.mpeg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/repository/b/SCREEN.mpeg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/repository/b/episode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/repository/b/episode.xml -------------------------------------------------------------------------------- /tests/resources/repository/b/galicaster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/repository/b/galicaster.json -------------------------------------------------------------------------------- /tests/resources/repository/b/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/repository/b/manifest.xml -------------------------------------------------------------------------------- /tests/resources/repository/b/series.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/repository/b/series.xml -------------------------------------------------------------------------------- /tests/resources/repository/bad/CAMERA.mpeg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/repository/bad/SCREEN_bad.mpeg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/repository/bad/episode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/repository/bad/episode.xml -------------------------------------------------------------------------------- /tests/resources/repository/bad/galicaster.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/repository/bad/galicaster.xml -------------------------------------------------------------------------------- /tests/resources/repository/bad/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/repository/bad/manifest.xml -------------------------------------------------------------------------------- /tests/resources/repository/c/CAMERA.mpeg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/repository/c/SCREEN.mpeg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/repository/c/episode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/repository/c/episode.xml -------------------------------------------------------------------------------- /tests/resources/repository/c/galicaster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/repository/c/galicaster.json -------------------------------------------------------------------------------- /tests/resources/repository/c/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/repository/c/manifest.xml -------------------------------------------------------------------------------- /tests/resources/repository/c/series.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/repository/c/series.xml -------------------------------------------------------------------------------- /tests/resources/repository/d/CAMERA.mpeg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/repository/d/episode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/repository/d/episode.xml -------------------------------------------------------------------------------- /tests/resources/repository/d/galicaster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/repository/d/galicaster.json -------------------------------------------------------------------------------- /tests/resources/repository/d/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/repository/d/manifest.xml -------------------------------------------------------------------------------- /tests/resources/repository/d/org.opencastproject.capture.agent.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/repository/d/org.opencastproject.capture.agent.properties -------------------------------------------------------------------------------- /tests/resources/repository/d/series.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/repository/d/series.xml -------------------------------------------------------------------------------- /tests/resources/repository/e/CAMERA.mpeg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/repository/e/SCREEN.mpeg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/repository/e/episode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/repository/e/episode.xml -------------------------------------------------------------------------------- /tests/resources/repository/e/galicaster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/repository/e/galicaster.json -------------------------------------------------------------------------------- /tests/resources/repository/e/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/repository/e/manifest.xml -------------------------------------------------------------------------------- /tests/resources/repository/e/series.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/repository/e/series.xml -------------------------------------------------------------------------------- /tests/resources/sbs/AUDIO.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/sbs/AUDIO.mp3 -------------------------------------------------------------------------------- /tests/resources/sbs/CAMERA.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/sbs/CAMERA.mp4 -------------------------------------------------------------------------------- /tests/resources/sbs/CAMERA_NO_AUDIO.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/sbs/CAMERA_NO_AUDIO.mp4 -------------------------------------------------------------------------------- /tests/resources/sbs/SCREEN.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/sbs/SCREEN.mp4 -------------------------------------------------------------------------------- /tests/resources/sbs/SCREEN_NO_AUDIO.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/sbs/SCREEN_NO_AUDIO.mp4 -------------------------------------------------------------------------------- /tests/resources/utils/temporary_recording/CAMERA.mpeg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/utils/temporary_recording/SCREEN.mpeg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/utils/temporary_recording/episode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/utils/temporary_recording/episode.xml -------------------------------------------------------------------------------- /tests/resources/utils/temporary_recording/galicaster.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/utils/temporary_recording/galicaster.xml -------------------------------------------------------------------------------- /tests/resources/utils/temporary_recording/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/utils/temporary_recording/info.json -------------------------------------------------------------------------------- /tests/resources/utils/temporary_recording/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/utils/temporary_recording/manifest.xml -------------------------------------------------------------------------------- /tests/resources/utils/temporary_recording/series.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/resources/utils/temporary_recording/series.xml -------------------------------------------------------------------------------- /tests/scheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/scheduler/__init__.py -------------------------------------------------------------------------------- /tests/scheduler/heartbeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/scheduler/heartbeat.py -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/utils/__init__.py -------------------------------------------------------------------------------- /tests/utils/ical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/utils/ical.py -------------------------------------------------------------------------------- /tests/utils/mediainfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/utils/mediainfo.py -------------------------------------------------------------------------------- /tests/utils/miscellaneous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/utils/miscellaneous.py -------------------------------------------------------------------------------- /tests/utils/nautilus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/utils/nautilus.py -------------------------------------------------------------------------------- /tests/utils/readable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/utils/readable.py -------------------------------------------------------------------------------- /tests/utils/sidebyside.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/utils/sidebyside.py -------------------------------------------------------------------------------- /tests/utils/systemcalls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/utils/systemcalls.py -------------------------------------------------------------------------------- /tests/utils/validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teltek/Galicaster/HEAD/tests/utils/validator.py --------------------------------------------------------------------------------