├── .gitignore ├── CMakeLists.txt ├── CMakeModules ├── FindLibavutil.cmake ├── FindTesseract.cmake ├── UploadPPA.cmake └── cmake_uninstall.cmake.in ├── COPYING ├── Makefile ├── README ├── README.org ├── configure ├── debian ├── changelog └── copyright ├── doc ├── CMakeLists.txt ├── completion.sh └── vobsub2srt.1 ├── mplayer ├── CMakeLists.txt ├── README ├── mp_msg.c ├── mp_msg.h ├── spudec.c ├── spudec.h ├── unrar_exec.c ├── unrar_exec.h ├── vobsub.c └── vobsub.h ├── packaging ├── vobsub2srt-9999.ebuild ├── vobsub2srt.rb ├── vobsub2srt.spec └── vobsub2srt.spec.rst └── src ├── CMakeLists.txt ├── cmd_options.c++ ├── cmd_options.h++ ├── gen_langcodes.pl ├── langcodes.c++ ├── langcodes.h++ └── vobsub2srt.c++ /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeModules/FindLibavutil.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/CMakeModules/FindLibavutil.cmake -------------------------------------------------------------------------------- /CMakeModules/FindTesseract.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/CMakeModules/FindTesseract.cmake -------------------------------------------------------------------------------- /CMakeModules/UploadPPA.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/CMakeModules/UploadPPA.cmake -------------------------------------------------------------------------------- /CMakeModules/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/CMakeModules/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | README.org -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/README.org -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/configure -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/debian/copyright -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/completion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/doc/completion.sh -------------------------------------------------------------------------------- /doc/vobsub2srt.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/doc/vobsub2srt.1 -------------------------------------------------------------------------------- /mplayer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/mplayer/CMakeLists.txt -------------------------------------------------------------------------------- /mplayer/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/mplayer/README -------------------------------------------------------------------------------- /mplayer/mp_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/mplayer/mp_msg.c -------------------------------------------------------------------------------- /mplayer/mp_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/mplayer/mp_msg.h -------------------------------------------------------------------------------- /mplayer/spudec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/mplayer/spudec.c -------------------------------------------------------------------------------- /mplayer/spudec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/mplayer/spudec.h -------------------------------------------------------------------------------- /mplayer/unrar_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/mplayer/unrar_exec.c -------------------------------------------------------------------------------- /mplayer/unrar_exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/mplayer/unrar_exec.h -------------------------------------------------------------------------------- /mplayer/vobsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/mplayer/vobsub.c -------------------------------------------------------------------------------- /mplayer/vobsub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/mplayer/vobsub.h -------------------------------------------------------------------------------- /packaging/vobsub2srt-9999.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/packaging/vobsub2srt-9999.ebuild -------------------------------------------------------------------------------- /packaging/vobsub2srt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/packaging/vobsub2srt.rb -------------------------------------------------------------------------------- /packaging/vobsub2srt.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/packaging/vobsub2srt.spec -------------------------------------------------------------------------------- /packaging/vobsub2srt.spec.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/packaging/vobsub2srt.spec.rst -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/cmd_options.c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/src/cmd_options.c++ -------------------------------------------------------------------------------- /src/cmd_options.h++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/src/cmd_options.h++ -------------------------------------------------------------------------------- /src/gen_langcodes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/src/gen_langcodes.pl -------------------------------------------------------------------------------- /src/langcodes.c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/src/langcodes.c++ -------------------------------------------------------------------------------- /src/langcodes.h++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/src/langcodes.h++ -------------------------------------------------------------------------------- /src/vobsub2srt.c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruediger/VobSub2SRT/HEAD/src/vobsub2srt.c++ --------------------------------------------------------------------------------