├── .gitignore ├── DevicesInfo.py ├── README.md ├── RecordConfig.py ├── RecordHelp.py ├── RecordTrayIcon.py ├── RecordType.py ├── RecordVideo.py ├── RecordWindow.py ├── RunCMD.py ├── SettingWindow.py ├── Shortcut.py ├── complex_setup.py ├── csetup.py ├── ffmpeg-shared ├── LICENSE.txt ├── README.txt ├── bin │ ├── avcodec-58.dll │ ├── avdevice-58.dll │ ├── avfilter-7.dll │ ├── avformat-58.dll │ ├── avutil-56.dll │ ├── ffmpeg.exe │ ├── ffplay.exe │ ├── ffprobe.exe │ ├── postproc-55.dll │ ├── swresample-3.dll │ └── swscale-5.dll └── presets │ ├── ffprobe.xsd │ ├── libvpx-1080p.ffpreset │ ├── libvpx-1080p50_60.ffpreset │ ├── libvpx-360p.ffpreset │ ├── libvpx-720p.ffpreset │ └── libvpx-720p50_60.ffpreset ├── list_devices_exarct.py ├── requirements.txt ├── resource.py ├── resource.qrc ├── resource ├── camera_recording.png ├── camera_recording_colorful.png ├── camera_recording_yellow.png ├── gutin.ico ├── gutin.jpg ├── screen_black.png ├── screen_recording.png ├── start.png ├── start_black.png ├── stop.png └── stop_black.png ├── setup.iss └── test ├── help.html └── read_winreg.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/.gitignore -------------------------------------------------------------------------------- /DevicesInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/DevicesInfo.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/README.md -------------------------------------------------------------------------------- /RecordConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/RecordConfig.py -------------------------------------------------------------------------------- /RecordHelp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/RecordHelp.py -------------------------------------------------------------------------------- /RecordTrayIcon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/RecordTrayIcon.py -------------------------------------------------------------------------------- /RecordType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/RecordType.py -------------------------------------------------------------------------------- /RecordVideo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/RecordVideo.py -------------------------------------------------------------------------------- /RecordWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/RecordWindow.py -------------------------------------------------------------------------------- /RunCMD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/RunCMD.py -------------------------------------------------------------------------------- /SettingWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/SettingWindow.py -------------------------------------------------------------------------------- /Shortcut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/Shortcut.py -------------------------------------------------------------------------------- /complex_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/complex_setup.py -------------------------------------------------------------------------------- /csetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/csetup.py -------------------------------------------------------------------------------- /ffmpeg-shared/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/ffmpeg-shared/LICENSE.txt -------------------------------------------------------------------------------- /ffmpeg-shared/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/ffmpeg-shared/README.txt -------------------------------------------------------------------------------- /ffmpeg-shared/bin/avcodec-58.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/ffmpeg-shared/bin/avcodec-58.dll -------------------------------------------------------------------------------- /ffmpeg-shared/bin/avdevice-58.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/ffmpeg-shared/bin/avdevice-58.dll -------------------------------------------------------------------------------- /ffmpeg-shared/bin/avfilter-7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/ffmpeg-shared/bin/avfilter-7.dll -------------------------------------------------------------------------------- /ffmpeg-shared/bin/avformat-58.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/ffmpeg-shared/bin/avformat-58.dll -------------------------------------------------------------------------------- /ffmpeg-shared/bin/avutil-56.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/ffmpeg-shared/bin/avutil-56.dll -------------------------------------------------------------------------------- /ffmpeg-shared/bin/ffmpeg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/ffmpeg-shared/bin/ffmpeg.exe -------------------------------------------------------------------------------- /ffmpeg-shared/bin/ffplay.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/ffmpeg-shared/bin/ffplay.exe -------------------------------------------------------------------------------- /ffmpeg-shared/bin/ffprobe.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/ffmpeg-shared/bin/ffprobe.exe -------------------------------------------------------------------------------- /ffmpeg-shared/bin/postproc-55.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/ffmpeg-shared/bin/postproc-55.dll -------------------------------------------------------------------------------- /ffmpeg-shared/bin/swresample-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/ffmpeg-shared/bin/swresample-3.dll -------------------------------------------------------------------------------- /ffmpeg-shared/bin/swscale-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/ffmpeg-shared/bin/swscale-5.dll -------------------------------------------------------------------------------- /ffmpeg-shared/presets/ffprobe.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/ffmpeg-shared/presets/ffprobe.xsd -------------------------------------------------------------------------------- /ffmpeg-shared/presets/libvpx-1080p.ffpreset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/ffmpeg-shared/presets/libvpx-1080p.ffpreset -------------------------------------------------------------------------------- /ffmpeg-shared/presets/libvpx-1080p50_60.ffpreset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/ffmpeg-shared/presets/libvpx-1080p50_60.ffpreset -------------------------------------------------------------------------------- /ffmpeg-shared/presets/libvpx-360p.ffpreset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/ffmpeg-shared/presets/libvpx-360p.ffpreset -------------------------------------------------------------------------------- /ffmpeg-shared/presets/libvpx-720p.ffpreset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/ffmpeg-shared/presets/libvpx-720p.ffpreset -------------------------------------------------------------------------------- /ffmpeg-shared/presets/libvpx-720p50_60.ffpreset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/ffmpeg-shared/presets/libvpx-720p50_60.ffpreset -------------------------------------------------------------------------------- /list_devices_exarct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/list_devices_exarct.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | PyQt5 2 | psutil 3 | pyhook3 4 | pywin32 5 | cchardet -------------------------------------------------------------------------------- /resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/resource.py -------------------------------------------------------------------------------- /resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/resource.qrc -------------------------------------------------------------------------------- /resource/camera_recording.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/resource/camera_recording.png -------------------------------------------------------------------------------- /resource/camera_recording_colorful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/resource/camera_recording_colorful.png -------------------------------------------------------------------------------- /resource/camera_recording_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/resource/camera_recording_yellow.png -------------------------------------------------------------------------------- /resource/gutin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/resource/gutin.ico -------------------------------------------------------------------------------- /resource/gutin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/resource/gutin.jpg -------------------------------------------------------------------------------- /resource/screen_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/resource/screen_black.png -------------------------------------------------------------------------------- /resource/screen_recording.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/resource/screen_recording.png -------------------------------------------------------------------------------- /resource/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/resource/start.png -------------------------------------------------------------------------------- /resource/start_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/resource/start_black.png -------------------------------------------------------------------------------- /resource/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/resource/stop.png -------------------------------------------------------------------------------- /resource/stop_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/resource/stop_black.png -------------------------------------------------------------------------------- /setup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/setup.iss -------------------------------------------------------------------------------- /test/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/test/help.html -------------------------------------------------------------------------------- /test/read_winreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilinxiao/record-camera-and-screen/HEAD/test/read_winreg.py --------------------------------------------------------------------------------