├── debian ├── compat ├── manpages ├── source │ └── format ├── install ├── watch ├── gbp.conf ├── docs ├── patches │ ├── series │ └── compile_everything_with_single_cmake.patch ├── changelog └── rules ├── source ├── po │ ├── ChangeLog │ ├── LINGUAS │ └── TranscriberAG.mo ├── libs │ ├── aglib-2.0.1 │ │ ├── ltconfig │ │ ├── src │ │ │ ├── formats │ │ │ │ ├── TRS │ │ │ │ │ ├── trace │ │ │ │ │ ├── frint980428.trs │ │ │ │ │ ├── fre_h5_20050615.xml │ │ │ │ │ ├── iso639.h │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TF │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── BAS │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── LCF │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── BU │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── TIMIT │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── XLabel │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── AG │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── SwitchBoard │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── CAG │ │ │ │ │ └── CMakeLists.txt │ │ │ │ └── ATLAS │ │ │ │ │ └── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── ag_wrapper │ │ │ │ ├── tcl │ │ │ │ │ └── pkg_mkIndex.tcl │ │ │ │ ├── java │ │ │ │ │ └── jag.class │ │ │ │ └── Makefile.am │ │ │ ├── CMakeLists.txt │ │ │ └── ag │ │ │ │ ├── regerror.ih │ │ │ │ ├── AGException.cc │ │ │ │ ├── README │ │ │ │ ├── utils.h │ │ │ │ └── agfioError.cc │ │ ├── INSTALL │ │ ├── NEWS │ │ ├── doc │ │ │ ├── archi.gif │ │ │ ├── layout.gif │ │ │ ├── dtd │ │ │ │ └── Makefile.am │ │ │ ├── api │ │ │ │ ├── doxygen.png │ │ │ │ ├── ftv2doc.png │ │ │ │ ├── ldclogo.gif │ │ │ │ ├── ftv2blank.png │ │ │ │ ├── ftv2link.png │ │ │ │ ├── ftv2mnode.png │ │ │ │ ├── ftv2node.png │ │ │ │ ├── ftv2pnode.png │ │ │ │ ├── classPaired.png │ │ │ │ ├── classRecord.png │ │ │ │ ├── ftv2lastnode.png │ │ │ │ ├── ftv2vertline.png │ │ │ │ ├── classFeatureMap.png │ │ │ │ ├── classMetadata.png │ │ │ │ ├── classagfioError.png │ │ │ │ ├── ftv2folderopen.png │ │ │ │ ├── ftv2mlastnode.png │ │ │ │ ├── ftv2plastnode.png │ │ │ │ ├── ftv2folderclosed.png │ │ │ │ ├── classRE_1_1CompError.png │ │ │ │ ├── classRE_1_1GetError.png │ │ │ │ ├── classRE_1_1MatchError.png │ │ │ │ ├── classRecord_1_1RangeError.png │ │ │ │ ├── classagfio_1_1LoadError.png │ │ │ │ ├── classagfio_1_1StoreError.png │ │ │ │ ├── footer.html │ │ │ │ ├── index.html │ │ │ │ └── tree.html │ │ │ └── Makefile.am │ │ ├── AUTHORS │ │ ├── Makefile.am │ │ ├── scripts │ │ │ ├── Makefile.am │ │ │ └── README │ │ ├── demo │ │ │ └── atis2wsj.sh │ │ ├── README-CMAKE-BT │ │ └── README-PATCH-BT │ ├── live555 │ │ ├── Makefile.head │ │ ├── README │ │ ├── testProgs │ │ │ ├── testMP3.sdp │ │ │ ├── testMPEG1or2Video.sdp │ │ │ ├── testMP3-using-ADUs.sdp │ │ │ ├── testMPEG2Transport.sdp │ │ │ └── testMPEG1or2AudioVideo.sdp │ │ ├── mediaServer │ │ │ └── version.hh │ │ ├── groupsock │ │ │ └── include │ │ │ │ └── groupsock_version.hh │ │ ├── liveMedia │ │ │ └── include │ │ │ │ └── liveMedia_version.hh │ │ ├── configure │ │ ├── README-CMAKE-BT │ │ ├── UsageEnvironment │ │ │ └── include │ │ │ │ └── UsageEnvironment_version.hh │ │ ├── BasicUsageEnvironment │ │ │ └── include │ │ │ │ └── BasicUsageEnvironment_version.hh │ │ ├── config.sunos │ │ ├── config.irix │ │ ├── config.alpha │ │ ├── config.macosx-before-version-10.4 │ │ ├── config.aix │ │ ├── config.openbsd │ │ ├── config.freebsd │ │ ├── config.cygwin │ │ ├── config.macosx │ │ ├── config.solaris │ │ ├── config.linux-gdb │ │ ├── config.linux │ │ ├── CMakeLists.txt │ │ ├── fix-makefile │ │ ├── config.armlinux │ │ ├── config.qnx4 │ │ └── config.uClinux │ ├── portaudio │ │ ├── bindings │ │ │ └── cpp │ │ │ │ ├── AUTHORS │ │ │ │ ├── NEWS │ │ │ │ ├── README │ │ │ │ ├── build │ │ │ │ ├── gnu │ │ │ │ │ └── OUT_OF_DATE │ │ │ │ └── vc7 │ │ │ │ │ └── OUT_OF_DATE │ │ │ │ ├── source │ │ │ │ └── portaudiocpp │ │ │ │ │ ├── MemFunCallbackStream.cxx │ │ │ │ │ └── CallbackStream.cxx │ │ │ │ ├── doc │ │ │ │ └── Makefile.am │ │ │ │ ├── Makefile.am │ │ │ │ ├── bin │ │ │ │ └── Makefile.am │ │ │ │ └── portaudiocpp.pc.in │ │ ├── doc │ │ │ └── src │ │ │ │ └── mainpage.dox │ │ ├── src │ │ │ ├── common │ │ │ │ └── pa_debugprint.c │ │ │ └── hostapi │ │ │ │ ├── asio │ │ │ │ ├── Pa_ASIO.pdf │ │ │ │ └── Callback_adaptation_.pdf │ │ │ │ └── oss │ │ │ │ └── low_latency_tip.txt │ │ ├── fixfile.bat │ │ ├── portaudio-2.0.pc.in │ │ ├── testcvs │ │ │ └── changeme.txt │ │ ├── README-CMAKE-BT │ │ ├── CMakeLists.txt │ │ └── fixdir.bat │ ├── soundtouch-1.4.0 │ │ ├── include │ │ │ └── CMakeLists.txt │ │ ├── source │ │ │ └── CMakeLists.txt │ │ ├── config │ │ │ └── README.TXT │ │ ├── README-CMAKE-BT │ │ ├── soundtouch-1.4.pc.in │ │ ├── CMakeLists.txt │ │ └── README-PATCH-BT │ └── CMakeLists.txt ├── src │ ├── GUI │ │ ├── transag_icon.rc │ │ ├── Transcriber.ico │ │ ├── Tree │ │ │ └── CMakeLists.txt │ │ ├── Tools │ │ │ └── CMakeLists.txt │ │ └── Speaker │ │ │ └── CMakeLists.txt │ ├── MediaComponent │ │ └── graphics │ │ │ ├── resources │ │ │ └── france24.png │ │ │ └── src │ │ │ └── CMakeLists.txt │ ├── Common │ │ ├── tdef.cc │ │ ├── tsub.cc │ │ ├── util │ │ │ └── trace.cpp │ │ └── icons │ │ │ └── IcoPackElement.cpp │ ├── Editors │ │ └── AnnotationEditor │ │ │ ├── menus │ │ │ └── annotation_menus.h │ │ │ └── dialogs │ │ │ └── annotation_dialogs.h │ └── Formats │ │ └── CMakeLists.txt ├── etc │ └── TransAG │ │ ├── icons │ │ ├── left.png │ │ ├── play.png │ │ ├── GUI │ │ │ ├── add.png │ │ │ ├── fs.png │ │ │ ├── id.png │ │ │ ├── kbd.png │ │ │ ├── tree.png │ │ │ ├── cancel.png │ │ │ ├── chk_info.png │ │ │ ├── crayon.png │ │ │ ├── dicoAG1.png │ │ │ ├── dicoAG2.png │ │ │ ├── distant.png │ │ │ ├── errorAG.png │ │ │ ├── errorAG2.png │ │ │ ├── file-avi.png │ │ │ ├── file-bak.png │ │ │ ├── file-bmp.png │ │ │ ├── file-c.png │ │ │ ├── file-cpp.png │ │ │ ├── file-gif.png │ │ │ ├── file-h.png │ │ │ ├── file-iso.png │ │ │ ├── file-jar.png │ │ │ ├── file-jpg.png │ │ │ ├── file-mp3.png │ │ │ ├── file-o.png │ │ │ ├── file-pdf.png │ │ │ ├── file-php.png │ │ │ ├── file-png.png │ │ │ ├── file-ppt.png │ │ │ ├── file-rar.png │ │ │ ├── file-rpm.png │ │ │ ├── file-sh.png │ │ │ ├── file-tag.png │ │ │ ├── file-tar.png │ │ │ ├── file-tgz.png │ │ │ ├── file-trs.png │ │ │ ├── file-txt.png │ │ │ ├── file-wmv.png │ │ │ ├── file-xml.png │ │ │ ├── file-zip.png │ │ │ ├── hilight.png │ │ │ ├── led_grey.png │ │ │ ├── led_red.png │ │ │ ├── project.png │ │ │ ├── remove.png │ │ │ ├── shortcut.png │ │ │ ├── speaker.png │ │ │ ├── sync_swt.png │ │ │ ├── sync_tws.png │ │ │ ├── validate.png │ │ │ ├── checkedbox.png │ │ │ ├── clipboard.png │ │ │ ├── directory.png │ │ │ ├── edit_mode.png │ │ │ ├── file-audio.png │ │ │ ├── file-bzip.png │ │ │ ├── file-excel.png │ │ │ ├── file-html.png │ │ │ ├── file-info.png │ │ │ ├── file-java.png │ │ │ ├── file-jpeg.png │ │ │ ├── file-liba.png │ │ │ ├── file-make.png │ │ │ ├── file-mpeg.png │ │ │ ├── file-wave.png │ │ │ ├── file-word.png │ │ │ ├── ftp_stock.png │ │ │ ├── gucharmap.png │ │ │ ├── led_green.png │ │ │ ├── networkAG.png │ │ │ ├── popup_dir.png │ │ │ ├── popup_play.png │ │ │ ├── screen_one.png │ │ │ ├── screen_two.png │ │ │ ├── searching.gif │ │ │ ├── tab_close.png │ │ │ ├── Transcriber.png │ │ │ ├── bookmark_ag.png │ │ │ ├── browse_mode.png │ │ │ ├── chk_warning.png │ │ │ ├── clipboard_in.png │ │ │ ├── clipboard_out.png │ │ │ ├── display_tag.png │ │ │ ├── expand_left.png │ │ │ ├── expand_right.png │ │ │ ├── file-binary.png │ │ │ ├── file-default.png │ │ │ ├── frame_error.png │ │ │ ├── gnome_default.png │ │ │ ├── myCombo_arrow.png │ │ │ ├── popup_refresh.png │ │ │ ├── popup_upload.png │ │ │ ├── preferences.png │ │ │ ├── search_close.png │ │ │ ├── search_dialog.png │ │ │ ├── search_next.png │ │ │ ├── shortcut_add.png │ │ │ ├── shortcut_box.png │ │ │ ├── sort_decrease.png │ │ │ ├── sort_increase.png │ │ │ ├── tab_close_2.png │ │ │ ├── tab_close_3.png │ │ │ ├── TranscriberGen.png │ │ │ ├── bookmark_ag_add.png │ │ │ ├── external_tools.png │ │ │ ├── file-annotation.png │ │ │ ├── file-javaclass.png │ │ │ ├── file_properties.png │ │ │ ├── load_indicator.gif │ │ │ ├── popup_download.png │ │ │ ├── popup_shortcut.png │ │ │ ├── project_winter.png │ │ │ ├── property_audio.png │ │ │ ├── search_previous.png │ │ │ ├── search_toPanel.png │ │ │ ├── background_disable.png │ │ │ ├── background_enable.png │ │ │ ├── expand_left_over.png │ │ │ ├── expand_left_press.png │ │ │ ├── expand_right_over.png │ │ │ ├── expand_right_press.png │ │ │ ├── gnome_directory1.png │ │ │ ├── gnome_directory2.png │ │ │ ├── hilight_disabled.png │ │ │ ├── networkAG_disabled.png │ │ │ ├── preferences_audio.png │ │ │ ├── preferences_editor.png │ │ │ ├── preferences_look.png │ │ │ ├── preferences_video.png │ │ │ ├── search_close_black.png │ │ │ ├── search_toToolbar.png │ │ │ ├── searching_static.png │ │ │ ├── sync_swt_disabled.png │ │ │ ├── sync_tws_disabled.png │ │ │ ├── display_tag_disabled.png │ │ │ ├── preferences_general.png │ │ │ ├── preferences_speakers.png │ │ │ ├── preferences_speller.png │ │ │ ├── speaker_dico_details.png │ │ │ ├── popup_delete_shortcut.png │ │ │ ├── popup_modify_shortcut.png │ │ │ ├── preferences_connection.png │ │ │ ├── preferences_look_colors.png │ │ │ ├── preferences_look_fonts.png │ │ │ ├── preferences_transcript.png │ │ │ ├── preferences_reload_level1.png │ │ │ ├── preferences_reload_level2.png │ │ │ ├── preferences_reload_level1_over.png │ │ │ └── preferences_reload_level1_pressed.png │ │ ├── pause.png │ │ ├── right.png │ │ ├── zoom_in.png │ │ ├── audio_off.png │ │ ├── audio_on.png │ │ ├── zoom_less.png │ │ ├── zoom_more.png │ │ └── zoom_out.png │ │ ├── demo │ │ ├── frint980428.trs │ │ ├── frint980428.wav │ │ └── exemple_stereo.wav │ │ ├── AnchorLinks-1.0.dtd │ │ ├── conventions │ │ ├── wordlists.dtd │ │ ├── import_mapping │ │ │ ├── chat.xml │ │ │ ├── sgml.xml │ │ │ ├── vrxml.xml │ │ │ ├── ctm.xml │ │ │ ├── lbl.xml │ │ │ ├── stm.xml │ │ │ ├── vsft.xml │ │ │ └── transag_compat.xml │ │ ├── wordlists.eng │ │ └── topics.dtd │ │ ├── toolsAG.dtd │ │ ├── configurationQualifiersAG.dtd │ │ └── configurationAG.dtd ├── doc │ ├── userman │ │ └── html │ │ │ ├── fr │ │ │ ├── Plus.jpg │ │ │ ├── images │ │ │ │ ├── RAZ.jpg │ │ │ │ ├── boucle.jpg │ │ │ │ └── audio_widget.jpg │ │ │ ├── pics │ │ │ │ ├── eng.gif │ │ │ │ ├── fre.gif │ │ │ │ ├── text_widget_rc.jpg │ │ │ │ ├── under_construction.gif │ │ │ │ └── under_construction_small.gif │ │ │ └── index.html │ │ │ ├── en │ │ │ ├── pics │ │ │ │ ├── eng.gif │ │ │ │ ├── fre.gif │ │ │ │ ├── main.jpg │ │ │ │ ├── loc_tab.jpg │ │ │ │ ├── audio_tab.jpg │ │ │ │ ├── clipboard.jpg │ │ │ │ ├── conf_audio.jpg │ │ │ │ ├── conf_loc.jpg │ │ │ │ ├── conf_look.jpg │ │ │ │ ├── conf_spell.jpg │ │ │ │ ├── conf_video.jpg │ │ │ │ ├── goto_menu.jpg │ │ │ │ ├── main_first.png │ │ │ │ ├── spell_tab.jpg │ │ │ │ ├── tool_bar.jpg │ │ │ │ ├── top_bars.jpg │ │ │ │ ├── trans_tab.jpg │ │ │ │ ├── video_tab.jpg │ │ │ │ ├── audio_widget.jpg │ │ │ │ ├── coming_soon.jpg │ │ │ │ ├── conf_editor.jpg │ │ │ │ ├── conf_general.jpg │ │ │ │ ├── gen_conf_tab.jpg │ │ │ │ ├── menu_bar_cut.jpg │ │ │ │ ├── menu_bar_geo.jpg │ │ │ │ ├── merged_view.jpg │ │ │ │ ├── new_file_dlg.jpg │ │ │ │ ├── scim_pinyin.png │ │ │ │ ├── stereo_view.jpg │ │ │ │ ├── text_widget.jpg │ │ │ │ ├── tool_bar_cut.jpg │ │ │ │ ├── explorer_tree.jpg │ │ │ │ ├── look_color_tab.jpg │ │ │ │ ├── look_font_tab.jpg │ │ │ │ ├── menu_bar_about.jpg │ │ │ │ ├── menu_bar_amount.jpg │ │ │ │ ├── menu_bar_clear.jpg │ │ │ │ ├── menu_bar_close.jpg │ │ │ │ ├── menu_bar_copy.jpg │ │ │ │ ├── menu_bar_create.jpg │ │ │ │ ├── menu_bar_edit.jpg │ │ │ │ ├── menu_bar_export.jpg │ │ │ │ ├── menu_bar_file.jpg │ │ │ │ ├── menu_bar_goto.jpg │ │ │ │ ├── menu_bar_help.jpg │ │ │ │ ├── menu_bar_import.jpg │ │ │ │ ├── menu_bar_manual.jpg │ │ │ │ ├── menu_bar_noise.jpg │ │ │ │ ├── menu_bar_open.jpg │ │ │ │ ├── menu_bar_paste.jpg │ │ │ │ ├── menu_bar_person.jpg │ │ │ │ ├── menu_bar_play.jpg │ │ │ │ ├── menu_bar_pref.jpg │ │ │ │ ├── menu_bar_quit.jpg │ │ │ │ ├── menu_bar_recent.jpg │ │ │ │ ├── menu_bar_redo.jpg │ │ │ │ ├── menu_bar_revert.jpg │ │ │ │ ├── menu_bar_rewind.jpg │ │ │ │ ├── menu_bar_save.jpg │ │ │ │ ├── menu_bar_search.jpg │ │ │ │ ├── menu_bar_signal.jpg │ │ │ │ ├── menu_bar_time.jpg │ │ │ │ ├── menu_bar_track1.jpg │ │ │ │ ├── menu_bar_track2.jpg │ │ │ │ ├── menu_bar_undo.jpg │ │ │ │ ├── menu_bar_window.jpg │ │ │ │ ├── open_tree_icon.jpg │ │ │ │ ├── search_close_tb.jpg │ │ │ │ ├── speakers_list.jpg │ │ │ │ ├── text_conf_tab.jpg │ │ │ │ ├── text_widget_rc.jpg │ │ │ │ ├── tool_bar_close.jpg │ │ │ │ ├── tool_bar_copy.jpg │ │ │ │ ├── tool_bar_open.jpg │ │ │ │ ├── tool_bar_paste.jpg │ │ │ │ ├── tool_bar_quit.jpg │ │ │ │ ├── tool_bar_redo.jpg │ │ │ │ ├── tool_bar_save.jpg │ │ │ │ ├── tool_bar_search.jpg │ │ │ │ ├── tool_bar_undo.jpg │ │ │ │ ├── annotation_editor.jpg │ │ │ │ ├── audio_widget_back.jpg │ │ │ │ ├── audio_widget_plus.jpg │ │ │ │ ├── audio_widget_zoom.jpg │ │ │ │ ├── explorer_tree_cut.jpg │ │ │ │ ├── global_dictionary.jpg │ │ │ │ ├── menu_bar_annotate.jpg │ │ │ │ ├── menu_bar_comment.jpg │ │ │ │ ├── menu_bar_decrease.jpg │ │ │ │ ├── menu_bar_enlarge.jpg │ │ │ │ ├── menu_bar_forward.jpg │ │ │ │ ├── menu_bar_increase.jpg │ │ │ │ ├── menu_bar_language.jpg │ │ │ │ ├── menu_bar_location.jpg │ │ │ │ ├── menu_bar_new_turn.jpg │ │ │ │ ├── menu_bar_next_tab.jpg │ │ │ │ ├── menu_bar_product.jpg │ │ │ │ ├── menu_bar_quality.jpg │ │ │ │ ├── menu_bar_refresh.jpg │ │ │ │ ├── menu_bar_save_as.jpg │ │ │ │ ├── menu_bar_speaker.jpg │ │ │ │ ├── menu_bar_suppress.jpg │ │ │ │ ├── menu_bar_unknown.jpg │ │ │ │ ├── select_signal_dlg.jpg │ │ │ │ ├── text_widget_cross.jpg │ │ │ │ ├── text_widget_seg_1.jpg │ │ │ │ ├── text_widget_seg_2.jpg │ │ │ │ ├── tool_bar_explorer.jpg │ │ │ │ ├── tool_bar_language.jpg │ │ │ │ ├── tool_bar_refresh.jpg │ │ │ │ ├── tool_bar_save_as.jpg │ │ │ │ ├── audio_widget_forward.jpg │ │ │ │ ├── audio_widget_minus.jpg │ │ │ │ ├── audio_widget_stereo.jpg │ │ │ │ ├── audio_widget_tempo.jpg │ │ │ │ ├── conf_transcription.jpg │ │ │ │ ├── confirm_new_file_dlg.jpg │ │ │ │ ├── explorer_tree_copy.jpg │ │ │ │ ├── explorer_tree_create.jpg │ │ │ │ ├── explorer_tree_delete.jpg │ │ │ │ ├── explorer_tree_filter.jpg │ │ │ │ ├── explorer_tree_open.jpg │ │ │ │ ├── explorer_tree_paste.jpg │ │ │ │ ├── explorer_tree_rename.jpg │ │ │ │ ├── menu_bar_background.jpg │ │ │ │ ├── menu_bar_close_page.jpg │ │ │ │ ├── menu_bar_disfluency.jpg │ │ │ │ ├── menu_bar_edit_entity.jpg │ │ │ │ ├── menu_bar_export_file.jpg │ │ │ │ ├── menu_bar_facilities.jpg │ │ │ │ ├── menu_bar_new_entity.jpg │ │ │ │ ├── menu_bar_new_section.jpg │ │ │ │ ├── menu_bar_new_segment.jpg │ │ │ │ ├── menu_bar_next_entry.jpg │ │ │ │ ├── menu_bar_save_sign.jpg │ │ │ │ ├── menu_bar_show_status.jpg │ │ │ │ ├── menu_bar_synchronize.jpg │ │ │ │ ├── menu_bar_write_read.jpg │ │ │ │ ├── search_dialog_mode.jpg │ │ │ │ ├── search_switch_dialog.jpg │ │ │ │ ├── search_toolbar_mode.jpg │ │ │ │ ├── text_widget_event_rc.jpg │ │ │ │ ├── tool_bar_clipboard.jpg │ │ │ │ ├── tool_bar_edit_mode.jpg │ │ │ │ ├── tool_bar_highlight.jpg │ │ │ │ ├── tool_bar_sync_signal.jpg │ │ │ │ ├── tool_bar_sync_text.jpg │ │ │ │ ├── under_construction.gif │ │ │ │ ├── video_widget_browser.jpg │ │ │ │ ├── video_widget_viewer.jpg │ │ │ │ ├── audio_widget_export_to.jpg │ │ │ │ ├── audio_widget_new_turn.jpg │ │ │ │ ├── audio_widget_playback.jpg │ │ │ │ ├── audio_widget_selection.jpg │ │ │ │ ├── explorer_tree_proposal.jpg │ │ │ │ ├── explorer_tree_refresh.jpg │ │ │ │ ├── explorer_tree_shortcut.jpg │ │ │ │ ├── file_properties_dialog.jpg │ │ │ │ ├── file_properties_popup.jpg │ │ │ │ ├── file_properties_popup2.jpg │ │ │ │ ├── menu_bar_active_track1.jpg │ │ │ │ ├── menu_bar_active_track2.jpg │ │ │ │ ├── menu_bar_delete_entity.jpg │ │ │ │ ├── menu_bar_delete_event.jpg │ │ │ │ ├── menu_bar_edit_unlight.jpg │ │ │ │ ├── menu_bar_file_speaker.jpg │ │ │ │ ├── menu_bar_file_unlight.jpg │ │ │ │ ├── menu_bar_find_in_tags.jpg │ │ │ │ ├── menu_bar_help_unlight.jpg │ │ │ │ ├── menu_bar_next_language.jpg │ │ │ │ ├── menu_bar_normalization.jpg │ │ │ │ ├── menu_bar_organization.jpg │ │ │ │ ├── menu_bar_others_entity.jpg │ │ │ │ ├── menu_bar_previous_tab.jpg │ │ │ │ ├── menu_bar_search_button.jpg │ │ │ │ ├── menu_bar_show_explorer.jpg │ │ │ │ ├── menu_bar_show_language.jpg │ │ │ │ ├── menu_bar_show_toolbar.jpg │ │ │ │ ├── menu_bar_special_paste.jpg │ │ │ │ ├── recover_from_autosave.jpg │ │ │ │ ├── search_switch_toolbar.jpg │ │ │ │ ├── text_widget_background.jpg │ │ │ │ ├── text_widget_event_gen.jpg │ │ │ │ ├── text_widget_segment_rc.jpg │ │ │ │ ├── text_widget_speaker_rc.jpg │ │ │ │ ├── text_widget_timestamps.png │ │ │ │ ├── tool_bar_language_thin.jpg │ │ │ │ ├── tool_bar_unique_editor.jpg │ │ │ │ ├── turn_properties_dialog.jpg │ │ │ │ ├── audio_widget_audio_tracks.jpg │ │ │ │ ├── audio_widget_information.jpg │ │ │ │ ├── audio_widget_main_segment.jpg │ │ │ │ ├── audio_widget_play_pause.jpg │ │ │ │ ├── audio_widget_popup2_menu.jpg │ │ │ │ ├── entity_properties_dialog.jpg │ │ │ │ ├── event_properties_dialog.jpg │ │ │ │ ├── explorer_tree_new_folder.jpg │ │ │ │ ├── explorer_tree_properties.jpg │ │ │ │ ├── file_properties_signals.jpg │ │ │ │ ├── local_dictionary_detail.jpg │ │ │ │ ├── menu_bar_clipboard_apps.jpg │ │ │ │ ├── menu_bar_decrease_tempo.jpg │ │ │ │ ├── menu_bar_display_unlight.jpg │ │ │ │ ├── menu_bar_enable_highlight.jpg │ │ │ │ ├── menu_bar_global_speaker.jpg │ │ │ │ ├── menu_bar_increase_tempo.jpg │ │ │ │ ├── menu_bar_previous_entry.jpg │ │ │ │ ├── menu_bar_pronounciation.jpg │ │ │ │ ├── menu_bar_rev_saved_file.jpg │ │ │ │ ├── menu_bar_search_unlight.jpg │ │ │ │ ├── menu_bar_show_hide_tags.jpg │ │ │ │ ├── menu_bar_signal_unlight.jpg │ │ │ │ ├── menu_bar_speakers_unlight.jpg │ │ │ │ ├── menu_bar_windows_unlight.jpg │ │ │ │ ├── section_properties_dialog.jpg │ │ │ │ ├── segment_properties_dialog.jpg │ │ │ │ ├── text_widget_after_overlap.jpg │ │ │ │ ├── text_widget_compact_ara.jpg │ │ │ │ ├── text_widget_event_rc_add.jpg │ │ │ │ ├── text_widget_event_rc_fg.jpg │ │ │ │ ├── text_widget_overlap_dlg.jpg │ │ │ │ ├── text_widget_section_tag.jpg │ │ │ │ ├── text_widget_segment_tag.jpg │ │ │ │ ├── text_widget_speaker_tag.jpg │ │ │ │ ├── text_widget_unit_at_start.png │ │ │ │ ├── tool_bar_clipboard_small.jpg │ │ │ │ ├── tool_bar_file_properties.jpg │ │ │ │ ├── tool_bar_with_open_file.jpg │ │ │ │ ├── audio_widget_speaker_button.jpg │ │ │ │ ├── explorer_tree_add_shortcut.jpg │ │ │ │ ├── explorer_tree_create_multi.jpg │ │ │ │ ├── file_properties_statistics.jpg │ │ │ │ ├── menu_bar_annotation_unlight.jpg │ │ │ │ ├── menu_bar_display_clipboard.jpg │ │ │ │ ├── menu_bar_display_hide_clip.jpg │ │ │ │ ├── menu_bar_display_properties.jpg │ │ │ │ ├── menu_bar_previous_language.jpg │ │ │ │ ├── menu_bar_rev_autosaved_file.jpg │ │ │ │ ├── search_dialog_special_topic.jpg │ │ │ │ ├── text_widget_before_overlap.jpg │ │ │ │ ├── text_widget_detailed_annot.jpg │ │ │ │ ├── text_widget_misspelled_word.jpg │ │ │ │ ├── tool_bar_global_dictionary.jpg │ │ │ │ ├── audio_widget_playback_expanded.jpg │ │ │ │ ├── audio_widget_popup_background.jpg │ │ │ │ ├── audio_widget_segment_extended.jpg │ │ │ │ ├── dictionary_local_speakers_list.jpg │ │ │ │ ├── explorer_tree_delete_shortcut.jpg │ │ │ │ ├── explorer_tree_modify_shortcut.jpg │ │ │ │ ├── explorer_tree_shortcut_button.jpg │ │ │ │ ├── menu_bar_edit_event_properties.jpg │ │ │ │ ├── menu_bar_enable_dual_display.jpg │ │ │ │ ├── menu_bar_input_language_extend.jpg │ │ │ │ ├── menu_bar_new_foreground_event.jpg │ │ │ │ ├── menu_bar_save_signal_selection.jpg │ │ │ │ ├── menu_bar_search_find_in_tags.jpg │ │ │ │ ├── search_dialog_special_speaker.jpg │ │ │ │ ├── text_widget_event_annotation.jpg │ │ │ │ ├── text_widget_layout_after_del.jpg │ │ │ │ ├── tool_bar_displayed_editor_tag.jpg │ │ │ │ ├── audio_widget_popup_menu_extanded.jpg │ │ │ │ ├── global_dictionary_button_details.jpg │ │ │ │ ├── global_dictionary_method_import.jpg │ │ │ │ ├── global_dictionary_method_replace.jpg │ │ │ │ ├── text_widget_spelling_suggestions.jpg │ │ │ │ ├── audio_widget_audio_tracks_expanded.jpg │ │ │ │ ├── audio_widget_popup_save_selection.jpg │ │ │ │ ├── menu_bar_enable_signal_text_synchro.jpg │ │ │ │ ├── menu_bar_enable_text_signal_synchro.jpg │ │ │ │ ├── text_widget_background_properties.jpg │ │ │ │ ├── text_widget_detailed_annot_entity.jpg │ │ │ │ ├── global_dictionary_button_raise_global.jpg │ │ │ │ ├── global_dictionary_button_raise_local.jpg │ │ │ │ ├── text_widget_detailed_annot_entity_add.jpg │ │ │ │ └── global_dictionary_method_import_reverse.jpg │ │ │ └── index.html │ │ │ └── index.html │ ├── devel │ │ ├── transcriberAG_build_instructions.odt │ │ └── transcriberAG_localization_instructions.odt │ └── admin │ │ └── transcriberAG_configuration_instructions.odt ├── include │ └── config.h.in └── AUTHORS └── .gitignore /debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian/manpages: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/po/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/po/LINGUAS: -------------------------------------------------------------------------------- 1 | fr bo 2 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/ltconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/libs/live555/Makefile.head: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /source/libs/portaudio/bindings/cpp/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/libs/portaudio/bindings/cpp/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/libs/portaudio/bindings/cpp/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/install: -------------------------------------------------------------------------------- 1 | source/etc/TransAG etc 2 | 3 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/formats/TRS/trace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/libs/soundtouch-1.4.0/include/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/libs/portaudio/bindings/cpp/build/gnu/OUT_OF_DATE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/libs/portaudio/bindings/cpp/build/vc7/OUT_OF_DATE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/INSTALL: -------------------------------------------------------------------------------- 1 | see doc/index.html 2 | 3 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/NEWS: -------------------------------------------------------------------------------- 1 | New in 0.98: 2 | * First release of aglib. 3 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = ag ag_wrapper formats 2 | 3 | -------------------------------------------------------------------------------- /source/src/GUI/transag_icon.rc: -------------------------------------------------------------------------------- 1 | IDI_ICON1 ICON DISCARDABLE "Transcriber.ico" 2 | -------------------------------------------------------------------------------- /source/po/TranscriberAG.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/po/TranscriberAG.mo -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/ag_wrapper/tcl/pkg_mkIndex.tcl: -------------------------------------------------------------------------------- 1 | load .libs/ag.so 2 | pkg_mkIndex .libs ag.so 3 | 4 | -------------------------------------------------------------------------------- /source/src/GUI/Transcriber.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/src/GUI/Transcriber.ico -------------------------------------------------------------------------------- /source/etc/TransAG/icons/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/left.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/play.png -------------------------------------------------------------------------------- /source/doc/userman/html/fr/Plus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/fr/Plus.jpg -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/add.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/fs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/fs.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/id.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/kbd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/kbd.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/pause.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/right.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/zoom_in.png -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- 1 | version=3 2 | http://sf.net/transag/TranscriberAG-(\d[\.\d]*-?.?\d?)\.(?:zip|tgz|tbz2|txz|tar\.gz|tar\.bz2|tar\.xz) 3 | -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/tree.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/audio_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/audio_off.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/audio_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/audio_on.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/zoom_less.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/zoom_less.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/zoom_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/zoom_more.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/zoom_out.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/archi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/doc/archi.gif -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/layout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/doc/layout.gif -------------------------------------------------------------------------------- /debian/gbp.conf: -------------------------------------------------------------------------------- 1 | # Configuration file for git-buildpackage and friends 2 | 3 | [DEFAULT] 4 | pristine-tar = True 5 | sign-tags = True 6 | -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/eng.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/eng.gif -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/fre.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/fre.gif -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/main.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/fr/images/RAZ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/fr/images/RAZ.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/fr/pics/eng.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/fr/pics/eng.gif -------------------------------------------------------------------------------- /source/doc/userman/html/fr/pics/fre.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/fr/pics/fre.gif -------------------------------------------------------------------------------- /source/etc/TransAG/demo/frint980428.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/demo/frint980428.trs -------------------------------------------------------------------------------- /source/etc/TransAG/demo/frint980428.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/demo/frint980428.wav -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/cancel.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/chk_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/chk_info.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/crayon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/crayon.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/dicoAG1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/dicoAG1.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/dicoAG2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/dicoAG2.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/distant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/distant.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/errorAG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/errorAG.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/errorAG2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/errorAG2.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-avi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-avi.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-bak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-bak.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-bmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-bmp.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-c.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-cpp.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-gif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-gif.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-h.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-iso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-iso.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-jar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-jar.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-jpg.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-mp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-mp3.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-o.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-pdf.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-php.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-png.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-ppt.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-rar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-rar.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-rpm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-rpm.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-sh.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-tag.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-tar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-tar.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-tgz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-tgz.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-trs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-trs.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-txt.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-wmv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-wmv.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-xml.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-zip.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/hilight.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/led_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/led_grey.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/led_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/led_red.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/project.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/remove.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/shortcut.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/speaker.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/sync_swt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/sync_swt.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/sync_tws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/sync_tws.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/validate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/validate.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/dtd/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = ag-1.1.dtd 2 | pkgdata_DATA = ag-1.1.dtd 3 | pkgdatadir = $(datadir)/ag 4 | 5 | -------------------------------------------------------------------------------- /source/libs/live555/README: -------------------------------------------------------------------------------- 1 | For documentation and instructions for building this software, 2 | see 3 | -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | source/COPYING.txt 2 | source/gpl-3.0.txt 3 | source/AUTHORS 4 | source/doc/admin/transcriberAG_configuration_instructions.odt 5 | -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/loc_tab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/loc_tab.jpg -------------------------------------------------------------------------------- /source/etc/TransAG/demo/exemple_stereo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/demo/exemple_stereo.wav -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/checkedbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/checkedbox.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/clipboard.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/directory.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/edit_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/edit_mode.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-audio.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-bzip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-bzip.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-excel.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-html.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-info.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-java.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-jpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-jpeg.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-liba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-liba.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-make.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-make.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-mpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-mpeg.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-wave.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-word.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/ftp_stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/ftp_stock.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/gucharmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/gucharmap.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/led_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/led_green.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/networkAG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/networkAG.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/popup_dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/popup_dir.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/popup_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/popup_play.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/screen_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/screen_one.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/screen_two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/screen_two.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/searching.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/searching.gif -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/tab_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/tab_close.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/api/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/doc/api/doxygen.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/api/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/doc/api/ftv2doc.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/api/ldclogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/doc/api/ldclogo.gif -------------------------------------------------------------------------------- /source/libs/portaudio/doc/src/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/portaudio/doc/src/mainpage.dox -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/audio_tab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/audio_tab.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/clipboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/clipboard.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/conf_audio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/conf_audio.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/conf_loc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/conf_loc.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/conf_look.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/conf_look.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/conf_spell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/conf_spell.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/conf_video.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/conf_video.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/goto_menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/goto_menu.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/main_first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/main_first.png -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/spell_tab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/spell_tab.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/tool_bar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/tool_bar.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/top_bars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/top_bars.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/trans_tab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/trans_tab.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/video_tab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/video_tab.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/fr/images/boucle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/fr/images/boucle.jpg -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/Transcriber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/Transcriber.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/bookmark_ag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/bookmark_ag.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/browse_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/browse_mode.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/chk_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/chk_warning.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/clipboard_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/clipboard_in.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/clipboard_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/clipboard_out.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/display_tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/display_tag.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/expand_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/expand_left.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/expand_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/expand_right.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-binary.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-default.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/frame_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/frame_error.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/gnome_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/gnome_default.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/myCombo_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/myCombo_arrow.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/popup_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/popup_refresh.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/popup_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/popup_upload.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/preferences.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/search_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/search_close.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/search_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/search_dialog.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/search_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/search_next.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/shortcut_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/shortcut_add.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/shortcut_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/shortcut_box.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/sort_decrease.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/sort_decrease.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/sort_increase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/sort_increase.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/tab_close_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/tab_close_2.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/tab_close_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/tab_close_3.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/api/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/doc/api/ftv2blank.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/api/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/doc/api/ftv2link.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/api/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/doc/api/ftv2mnode.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/api/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/doc/api/ftv2node.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/api/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/doc/api/ftv2pnode.png -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/audio_widget.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/audio_widget.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/coming_soon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/coming_soon.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/conf_editor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/conf_editor.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/conf_general.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/conf_general.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/gen_conf_tab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/gen_conf_tab.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_cut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_cut.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_geo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_geo.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/merged_view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/merged_view.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/new_file_dlg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/new_file_dlg.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/scim_pinyin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/scim_pinyin.png -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/stereo_view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/stereo_view.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_widget.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_widget.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/tool_bar_cut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/tool_bar_cut.jpg -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/TranscriberGen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/TranscriberGen.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/bookmark_ag_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/bookmark_ag_add.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/external_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/external_tools.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-annotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-annotation.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file-javaclass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file-javaclass.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/file_properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/file_properties.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/load_indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/load_indicator.gif -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/popup_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/popup_download.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/popup_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/popup_shortcut.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/project_winter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/project_winter.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/property_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/property_audio.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/search_previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/search_previous.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/search_toPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/search_toPanel.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/api/classPaired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/doc/api/classPaired.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/api/classRecord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/doc/api/classRecord.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/api/ftv2lastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/doc/api/ftv2lastnode.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/api/ftv2vertline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/doc/api/ftv2vertline.png -------------------------------------------------------------------------------- /source/libs/portaudio/src/common/pa_debugprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/portaudio/src/common/pa_debugprint.c -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/explorer_tree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/explorer_tree.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/look_color_tab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/look_color_tab.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/look_font_tab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/look_font_tab.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_about.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_amount.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_amount.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_clear.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_clear.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_close.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_copy.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_create.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_create.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_edit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_edit.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_export.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_export.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_file.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_file.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_goto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_goto.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_help.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_help.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_import.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_import.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_manual.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_manual.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_noise.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_noise.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_open.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_open.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_paste.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_paste.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_person.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_person.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_play.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_play.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_pref.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_pref.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_quit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_quit.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_recent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_recent.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_redo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_redo.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_revert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_revert.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_rewind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_rewind.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_save.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_save.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_search.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_search.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_signal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_signal.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_time.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_time.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_track1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_track1.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_track2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_track2.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_undo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_undo.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_window.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_window.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/open_tree_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/open_tree_icon.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/search_close_tb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/search_close_tb.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/speakers_list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/speakers_list.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_conf_tab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_conf_tab.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_widget_rc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_widget_rc.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/tool_bar_close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/tool_bar_close.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/tool_bar_copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/tool_bar_copy.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/tool_bar_open.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/tool_bar_open.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/tool_bar_paste.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/tool_bar_paste.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/tool_bar_quit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/tool_bar_quit.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/tool_bar_redo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/tool_bar_redo.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/tool_bar_save.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/tool_bar_save.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/tool_bar_search.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/tool_bar_search.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/tool_bar_undo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/tool_bar_undo.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/fr/images/audio_widget.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/fr/images/audio_widget.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/fr/pics/text_widget_rc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/fr/pics/text_widget_rc.jpg -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/background_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/background_disable.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/background_enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/background_enable.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/expand_left_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/expand_left_over.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/expand_left_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/expand_left_press.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/expand_right_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/expand_right_over.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/expand_right_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/expand_right_press.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/gnome_directory1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/gnome_directory1.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/gnome_directory2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/gnome_directory2.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/hilight_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/hilight_disabled.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/networkAG_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/networkAG_disabled.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/preferences_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/preferences_audio.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/preferences_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/preferences_editor.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/preferences_look.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/preferences_look.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/preferences_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/preferences_video.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/search_close_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/search_close_black.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/search_toToolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/search_toToolbar.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/searching_static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/searching_static.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/sync_swt_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/sync_swt_disabled.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/sync_tws_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/sync_tws_disabled.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/api/classFeatureMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/doc/api/classFeatureMap.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/api/classMetadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/doc/api/classMetadata.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/api/classagfioError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/doc/api/classagfioError.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/api/ftv2folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/doc/api/ftv2folderopen.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/api/ftv2mlastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/doc/api/ftv2mlastnode.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/api/ftv2plastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/doc/api/ftv2plastnode.png -------------------------------------------------------------------------------- /source/libs/portaudio/src/hostapi/asio/Pa_ASIO.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/portaudio/src/hostapi/asio/Pa_ASIO.pdf -------------------------------------------------------------------------------- /debian/patches/series: -------------------------------------------------------------------------------- 1 | compile_everything_with_single_cmake.patch 2 | compilation_fixes.patch 3 | cmake_installation_fixes.patch 4 | configuration_changes.patch 5 | -------------------------------------------------------------------------------- /source/doc/devel/transcriberAG_build_instructions.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/devel/transcriberAG_build_instructions.odt -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/annotation_editor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/annotation_editor.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/audio_widget_back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/audio_widget_back.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/audio_widget_plus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/audio_widget_plus.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/audio_widget_zoom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/audio_widget_zoom.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/explorer_tree_cut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/explorer_tree_cut.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/global_dictionary.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/global_dictionary.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_annotate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_annotate.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_comment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_comment.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_decrease.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_decrease.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_enlarge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_enlarge.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_forward.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_forward.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_increase.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_increase.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_language.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_language.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_location.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_location.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_new_turn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_new_turn.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_next_tab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_next_tab.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_product.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_product.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_quality.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_quality.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_refresh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_refresh.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_save_as.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_save_as.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_speaker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_speaker.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_suppress.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_suppress.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_unknown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_unknown.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/select_signal_dlg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/select_signal_dlg.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_widget_cross.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_widget_cross.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_widget_seg_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_widget_seg_1.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_widget_seg_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_widget_seg_2.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/tool_bar_explorer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/tool_bar_explorer.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/tool_bar_language.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/tool_bar_language.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/tool_bar_refresh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/tool_bar_refresh.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/tool_bar_save_as.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/tool_bar_save_as.jpg -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/display_tag_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/display_tag_disabled.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/preferences_general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/preferences_general.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/preferences_speakers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/preferences_speakers.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/preferences_speller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/preferences_speller.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/speaker_dico_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/speaker_dico_details.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/api/ftv2folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/doc/api/ftv2folderclosed.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/ag_wrapper/java/jag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/src/ag_wrapper/java/jag.class -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/audio_widget_forward.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/audio_widget_forward.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/audio_widget_minus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/audio_widget_minus.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/audio_widget_stereo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/audio_widget_stereo.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/audio_widget_tempo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/audio_widget_tempo.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/conf_transcription.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/conf_transcription.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/confirm_new_file_dlg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/confirm_new_file_dlg.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/explorer_tree_copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/explorer_tree_copy.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/explorer_tree_create.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/explorer_tree_create.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/explorer_tree_delete.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/explorer_tree_delete.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/explorer_tree_filter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/explorer_tree_filter.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/explorer_tree_open.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/explorer_tree_open.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/explorer_tree_paste.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/explorer_tree_paste.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/explorer_tree_rename.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/explorer_tree_rename.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_background.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_close_page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_close_page.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_disfluency.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_disfluency.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_edit_entity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_edit_entity.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_export_file.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_export_file.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_facilities.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_facilities.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_new_entity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_new_entity.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_new_section.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_new_section.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_new_segment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_new_segment.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_next_entry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_next_entry.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_save_sign.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_save_sign.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_show_status.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_show_status.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_synchronize.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_synchronize.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_write_read.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_write_read.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/search_dialog_mode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/search_dialog_mode.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/search_switch_dialog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/search_switch_dialog.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/search_toolbar_mode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/search_toolbar_mode.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_widget_event_rc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_widget_event_rc.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/tool_bar_clipboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/tool_bar_clipboard.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/tool_bar_edit_mode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/tool_bar_edit_mode.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/tool_bar_highlight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/tool_bar_highlight.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/tool_bar_sync_signal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/tool_bar_sync_signal.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/tool_bar_sync_text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/tool_bar_sync_text.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/under_construction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/under_construction.gif -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/video_widget_browser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/video_widget_browser.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/video_widget_viewer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/video_widget_viewer.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/fr/pics/under_construction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/fr/pics/under_construction.gif -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/popup_delete_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/popup_delete_shortcut.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/popup_modify_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/popup_modify_shortcut.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/preferences_connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/preferences_connection.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/preferences_look_colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/preferences_look_colors.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/preferences_look_fonts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/preferences_look_fonts.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/preferences_transcript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/preferences_transcript.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/api/classRE_1_1CompError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/doc/api/classRE_1_1CompError.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/api/classRE_1_1GetError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/doc/api/classRE_1_1GetError.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/formats/TRS/frint980428.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/src/formats/TRS/frint980428.trs -------------------------------------------------------------------------------- /source/libs/soundtouch-1.4.0/source/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # ------------------ 2 | # --- SoundTouch --- 3 | # ------------------ 4 | 5 | add_subdirectory(SoundTouch) 6 | 7 | -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/audio_widget_export_to.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/audio_widget_export_to.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/audio_widget_new_turn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/audio_widget_new_turn.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/audio_widget_playback.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/audio_widget_playback.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/audio_widget_selection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/audio_widget_selection.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/explorer_tree_proposal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/explorer_tree_proposal.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/explorer_tree_refresh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/explorer_tree_refresh.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/explorer_tree_shortcut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/explorer_tree_shortcut.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/file_properties_dialog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/file_properties_dialog.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/file_properties_popup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/file_properties_popup.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/file_properties_popup2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/file_properties_popup2.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_active_track1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_active_track1.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_active_track2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_active_track2.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_delete_entity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_delete_entity.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_delete_event.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_delete_event.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_edit_unlight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_edit_unlight.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_file_speaker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_file_speaker.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_file_unlight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_file_unlight.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_find_in_tags.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_find_in_tags.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_help_unlight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_help_unlight.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_next_language.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_next_language.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_normalization.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_normalization.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_organization.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_organization.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_others_entity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_others_entity.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_previous_tab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_previous_tab.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_search_button.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_search_button.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_show_explorer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_show_explorer.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_show_language.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_show_language.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_show_toolbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_show_toolbar.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_special_paste.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_special_paste.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/recover_from_autosave.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/recover_from_autosave.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/search_switch_toolbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/search_switch_toolbar.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_widget_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_widget_background.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_widget_event_gen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_widget_event_gen.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_widget_segment_rc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_widget_segment_rc.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_widget_speaker_rc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_widget_speaker_rc.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_widget_timestamps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_widget_timestamps.png -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/tool_bar_language_thin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/tool_bar_language_thin.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/tool_bar_unique_editor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/tool_bar_unique_editor.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/turn_properties_dialog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/turn_properties_dialog.jpg -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/preferences_reload_level1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/preferences_reload_level1.png -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/preferences_reload_level2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/preferences_reload_level2.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/api/classRE_1_1MatchError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/doc/api/classRE_1_1MatchError.png -------------------------------------------------------------------------------- /source/libs/portaudio/src/hostapi/oss/low_latency_tip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/portaudio/src/hostapi/oss/low_latency_tip.txt -------------------------------------------------------------------------------- /source/src/MediaComponent/graphics/resources/france24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/src/MediaComponent/graphics/resources/france24.png -------------------------------------------------------------------------------- /source/doc/admin/transcriberAG_configuration_instructions.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/admin/transcriberAG_configuration_instructions.odt -------------------------------------------------------------------------------- /source/doc/devel/transcriberAG_localization_instructions.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/devel/transcriberAG_localization_instructions.odt -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/audio_widget_audio_tracks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/audio_widget_audio_tracks.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/audio_widget_information.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/audio_widget_information.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/audio_widget_main_segment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/audio_widget_main_segment.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/audio_widget_play_pause.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/audio_widget_play_pause.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/audio_widget_popup2_menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/audio_widget_popup2_menu.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/entity_properties_dialog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/entity_properties_dialog.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/event_properties_dialog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/event_properties_dialog.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/explorer_tree_new_folder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/explorer_tree_new_folder.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/explorer_tree_properties.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/explorer_tree_properties.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/file_properties_signals.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/file_properties_signals.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/local_dictionary_detail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/local_dictionary_detail.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_clipboard_apps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_clipboard_apps.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_decrease_tempo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_decrease_tempo.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_display_unlight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_display_unlight.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_enable_highlight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_enable_highlight.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_global_speaker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_global_speaker.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_increase_tempo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_increase_tempo.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_previous_entry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_previous_entry.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_pronounciation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_pronounciation.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_rev_saved_file.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_rev_saved_file.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_search_unlight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_search_unlight.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_show_hide_tags.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_show_hide_tags.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_signal_unlight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_signal_unlight.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_speakers_unlight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_speakers_unlight.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_windows_unlight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_windows_unlight.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/section_properties_dialog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/section_properties_dialog.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/segment_properties_dialog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/segment_properties_dialog.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_widget_after_overlap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_widget_after_overlap.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_widget_compact_ara.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_widget_compact_ara.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_widget_event_rc_add.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_widget_event_rc_add.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_widget_event_rc_fg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_widget_event_rc_fg.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_widget_overlap_dlg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_widget_overlap_dlg.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_widget_section_tag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_widget_section_tag.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_widget_segment_tag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_widget_segment_tag.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_widget_speaker_tag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_widget_speaker_tag.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_widget_unit_at_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_widget_unit_at_start.png -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/tool_bar_clipboard_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/tool_bar_clipboard_small.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/tool_bar_file_properties.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/tool_bar_file_properties.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/tool_bar_with_open_file.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/tool_bar_with_open_file.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/fr/pics/under_construction_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/fr/pics/under_construction_small.gif -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/api/classRecord_1_1RangeError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/doc/api/classRecord_1_1RangeError.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/api/classagfio_1_1LoadError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/doc/api/classagfio_1_1LoadError.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/api/classagfio_1_1StoreError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/doc/api/classagfio_1_1StoreError.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/formats/TRS/fre_h5_20050615.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/aglib-2.0.1/src/formats/TRS/fre_h5_20050615.xml -------------------------------------------------------------------------------- /source/libs/portaudio/bindings/cpp/source/portaudiocpp/MemFunCallbackStream.cxx: -------------------------------------------------------------------------------- 1 | #include "portaudiocpp/MemFunCallbackStream.hxx" 2 | 3 | // (... template class ...) 4 | 5 | -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- 1 | transcriber-ag (2.0.0-b1) unstable; urgency=low 2 | 3 | * Initial Release. 4 | 5 | -- Giulio Paci Tue, 03 Jan 2012 20:54:56 +0100 6 | -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/audio_widget_speaker_button.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/audio_widget_speaker_button.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/explorer_tree_add_shortcut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/explorer_tree_add_shortcut.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/explorer_tree_create_multi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/explorer_tree_create_multi.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/file_properties_statistics.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/file_properties_statistics.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_annotation_unlight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_annotation_unlight.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_display_clipboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_display_clipboard.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_display_hide_clip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_display_hide_clip.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_display_properties.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_display_properties.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_previous_language.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_previous_language.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_rev_autosaved_file.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_rev_autosaved_file.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/search_dialog_special_topic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/search_dialog_special_topic.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_widget_before_overlap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_widget_before_overlap.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_widget_detailed_annot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_widget_detailed_annot.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_widget_misspelled_word.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_widget_misspelled_word.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/tool_bar_global_dictionary.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/tool_bar_global_dictionary.jpg -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/preferences_reload_level1_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/preferences_reload_level1_over.png -------------------------------------------------------------------------------- /source/libs/portaudio/src/hostapi/asio/Callback_adaptation_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/libs/portaudio/src/hostapi/asio/Callback_adaptation_.pdf -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/audio_widget_playback_expanded.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/audio_widget_playback_expanded.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/audio_widget_popup_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/audio_widget_popup_background.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/audio_widget_segment_extended.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/audio_widget_segment_extended.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/dictionary_local_speakers_list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/dictionary_local_speakers_list.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/explorer_tree_delete_shortcut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/explorer_tree_delete_shortcut.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/explorer_tree_modify_shortcut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/explorer_tree_modify_shortcut.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/explorer_tree_shortcut_button.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/explorer_tree_shortcut_button.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_edit_event_properties.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_edit_event_properties.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_enable_dual_display.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_enable_dual_display.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_input_language_extend.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_input_language_extend.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_new_foreground_event.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_new_foreground_event.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_save_signal_selection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_save_signal_selection.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_search_find_in_tags.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_search_find_in_tags.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/search_dialog_special_speaker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/search_dialog_special_speaker.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_widget_event_annotation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_widget_event_annotation.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_widget_layout_after_del.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_widget_layout_after_del.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/tool_bar_displayed_editor_tag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/tool_bar_displayed_editor_tag.jpg -------------------------------------------------------------------------------- /source/etc/TransAG/icons/GUI/preferences_reload_level1_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/etc/TransAG/icons/GUI/preferences_reload_level1_pressed.png -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/api/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 |
5 | -------------------------------------------------------------------------------- /source/libs/soundtouch-1.4.0/config/README.TXT: -------------------------------------------------------------------------------- 1 | Files in this directory are used by GNU autoconf/automake system. 2 | These files aren't used/needed in the Windows environment. 3 | 4 | -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/audio_widget_popup_menu_extanded.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/audio_widget_popup_menu_extanded.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/global_dictionary_button_details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/global_dictionary_button_details.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/global_dictionary_method_import.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/global_dictionary_method_import.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/global_dictionary_method_replace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/global_dictionary_method_replace.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_widget_spelling_suggestions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_widget_spelling_suggestions.jpg -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/formats/Makefile.am: -------------------------------------------------------------------------------- 1 | if XML 2 | SUB1 = AG ATLAS 3 | else 4 | SUB1 = 5 | endif 6 | 7 | SUBDIRS = $(SUB1) BAS BU CAG LCF SwitchBoard TF TIMIT TreeBank XLabel 8 | 9 | -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/audio_widget_audio_tracks_expanded.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/audio_widget_audio_tracks_expanded.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/audio_widget_popup_save_selection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/audio_widget_popup_save_selection.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_enable_signal_text_synchro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_enable_signal_text_synchro.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/menu_bar_enable_text_signal_synchro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/menu_bar_enable_text_signal_synchro.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_widget_background_properties.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_widget_background_properties.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_widget_detailed_annot_entity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_widget_detailed_annot_entity.jpg -------------------------------------------------------------------------------- /source/include/config.h.in: -------------------------------------------------------------------------------- 1 | #define ENABLE_NLS @ENABLE_NLS@ 2 | #define LOCALEDIR "@LOCALEDIR@" 3 | #define CMAKE_INSTALL_PREFIX "@CMAKE_INSTALL_PREFIX@" 4 | #define AG_PLUGINDIR "@AG_PLUGINDIR@" 5 | -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/global_dictionary_button_raise_global.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/global_dictionary_button_raise_global.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/global_dictionary_button_raise_local.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/global_dictionary_button_raise_local.jpg -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/text_widget_detailed_annot_entity_add.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/text_widget_detailed_annot_entity_add.jpg -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/AUTHORS: -------------------------------------------------------------------------------- 1 | Authors of aglib. 2 | 3 | Steven Bird. Director. 4 | Xiaoyi Ma, Steven Bird. AG kernel library. 5 | Haejoong Lee. File I/O, AG wrapper for Tcl and Python. 6 | 7 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # ------------------------ 2 | # --- AGLib (BT Patch) --- 3 | # ------------------------ 4 | 5 | add_subdirectory(ag) 6 | add_subdirectory(formats) 7 | 8 | -------------------------------------------------------------------------------- /source/libs/portaudio/bindings/cpp/doc/Makefile.am: -------------------------------------------------------------------------------- 1 | PACPP_ROOT = . 2 | #INCLUDES = -I$(srcdir)/$(PACPP_ROOT)/include -I$(top_srcdir)/include 3 | 4 | docs: 5 | doxygen $(srcdir)/config.doxy.linux 6 | -------------------------------------------------------------------------------- /source/doc/userman/html/en/pics/global_dictionary_method_import_reverse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eroux/transcriber-ag/HEAD/source/doc/userman/html/en/pics/global_dictionary_method_import_reverse.jpg -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src scripts demo doc 2 | 3 | EXTRA_DIST = LICENSE 4 | dist-hook: 5 | tar cf - projects/win32 --exclude=CVS --exclude=*.gif | (cd $(distdir); tar xf -) 6 | 7 | -------------------------------------------------------------------------------- /source/libs/portaudio/bindings/cpp/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = lib include bin 2 | #doc 3 | 4 | EXTRA_DIST = portaudiocpp.pc 5 | 6 | pkgconfigdir = $(libdir)/pkgconfig 7 | pkgconfig_DATA = portaudiocpp.pc 8 | -------------------------------------------------------------------------------- /source/src/Common/tdef.cc: -------------------------------------------------------------------------------- 1 | #include 2 | #include "globals.h" 3 | int main() 4 | { 5 | #ifdef WITH_DES 6 | printf("glop = %d\n", WITH_DES); 7 | #else 8 | printf("noglop\n"); 9 | #endif 10 | return 0; 11 | } 12 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/scripts/Makefile.am: -------------------------------------------------------------------------------- 1 | if AGDB 2 | PRG = CreateAGTables 3 | else 4 | PRG = 5 | endif 6 | 7 | bin_PROGRAMS = $(PRG) 8 | CreateAGTables_LDADD = -liodbc 9 | CreateAGTables_SOURCES = CreateAGTables.c 10 | 11 | EXTRA_DIST = README 12 | -------------------------------------------------------------------------------- /source/libs/portaudio/fixfile.bat: -------------------------------------------------------------------------------- 1 | rem Use Astyle to fix style in a file 2 | fixlines -p %1% 3 | astyle --style=ansi -c -o --convert-tabs --indent-preprocessor %1% 4 | del %1%.orig 5 | @rem convert line terminators to Unix style LFs 6 | fixlines -u %1% 7 | del %1%.bak 8 | -------------------------------------------------------------------------------- /source/libs/portaudio/bindings/cpp/bin/Makefile.am: -------------------------------------------------------------------------------- 1 | BINDIR = $(top_srcdir)/example 2 | LIBDIR = $(top_builddir)/lib 3 | 4 | noinst_PROGRAMS = devs sine 5 | 6 | LDADD = $(LIBDIR)/libportaudiocpp.la 7 | 8 | devs_SOURCES = $(BINDIR)/devs.cxx 9 | sine_SOURCES = $(BINDIR)/sine.cxx 10 | -------------------------------------------------------------------------------- /source/libs/live555/testProgs/testMP3.sdp: -------------------------------------------------------------------------------- 1 | v=0 2 | o=- 49452 4 IN IP4 127.0.0.1 3 | s=Test MP3 session 4 | i=Parameters for the session streamed by "testMP3Streamer" 5 | t=0 0 6 | a=tool:testMP3Streamer 7 | a=type:broadcast 8 | m=audio 6666 RTP/AVP 14 9 | c=IN IP4 239.255.42.42/127 10 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/api/index.html: -------------------------------------------------------------------------------- 1 | 2 | AGLIB API 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/api/tree.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/ag_wrapper/Makefile.am: -------------------------------------------------------------------------------- 1 | if AG_TCL 2 | SUB1 = tcl 3 | else 4 | SUB1 = 5 | endif 6 | 7 | if AG_PYTHON 8 | SUB2 = python 9 | else 10 | SUB2 = 11 | endif 12 | 13 | if AG_JAVA 14 | SUB3 = java 15 | else 16 | SUB3 = 17 | endif 18 | 19 | SUBDIRS = $(SUB1) $(SUB2) $(SUB3) 20 | 21 | -------------------------------------------------------------------------------- /source/etc/TransAG/AnchorLinks-1.0.dtd: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 13 | -------------------------------------------------------------------------------- /source/libs/live555/testProgs/testMPEG1or2Video.sdp: -------------------------------------------------------------------------------- 1 | v=0 2 | o=- 49451 3 IN IP4 127.0.0.1 3 | s=Test MPEG Video session 4 | i=Parameters for the session streamed by "testMPEG1or2VideoStreamer" 5 | t=0 0 6 | a=tool:testMPEG1or2VideoStreamer 7 | a=type:broadcast 8 | m=video 8888 RTP/AVP 32 9 | c=IN IP4 239.255.42.42/127 10 | -------------------------------------------------------------------------------- /source/libs/portaudio/portaudio-2.0.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | Name: PortAudio 7 | Description: Portable audio I/O 8 | Requires: 9 | Version: 19 10 | 11 | Libs: -L${libdir} -lportaudio @LIBS@ 12 | Cflags: -I${includedir} @THREAD_CFLAGS@ 13 | -------------------------------------------------------------------------------- /source/libs/live555/testProgs/testMP3-using-ADUs.sdp: -------------------------------------------------------------------------------- 1 | v=0 2 | o=- 49452 4 IN IP4 127.0.0.1 3 | s=Test MP3 session 4 | i=Parameters for the session streamed by "testMP3Streamer" 5 | t=0 0 6 | a=tool:testMP3Streamer 7 | a=type:broadcast 8 | m=audio 6666 RTP/AVP 96 9 | c=IN IP4 239.255.42.42/127 10 | a=rtpmap:96 mpa-robust/90000 11 | -------------------------------------------------------------------------------- /source/libs/portaudio/testcvs/changeme.txt: -------------------------------------------------------------------------------- 1 | This is just a dopy little file used to test the CVS repository. 2 | Feel free to trash this file. 3 | Minor change. 4 | Another tweak. 5 | philburk tweak 6 | stephane test 7 | Phil changed this again on 2/21/02. Yawn... 8 | Bjorn test3! 9 | Phil tried to change this on 5/13/08 10 | 11 | -------------------------------------------------------------------------------- /source/libs/live555/testProgs/testMPEG2Transport.sdp: -------------------------------------------------------------------------------- 1 | v=0 2 | o=- 49451 3 IN IP4 127.0.0.1 3 | s=Test MPEG-2 Transport Stream session 4 | i=Parameters for the session streamed by "testMPEG2TransportStreamer" 5 | t=0 0 6 | a=tool:testMPEG2TransportStreamer 7 | a=type:broadcast 8 | m=video 1234 RTP/AVP 33 9 | c=IN IP4 239.255.42.42/127 10 | -------------------------------------------------------------------------------- /source/libs/portaudio/bindings/cpp/portaudiocpp.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | Name: PortAudioCpp 7 | Description: Portable audio I/O C++ bindings 8 | Version: 12 9 | Requires: portaudio-2.0 10 | 11 | Libs: -L${libdir} -lportaudiocpp 12 | Cflags: -I${includedir} 13 | -------------------------------------------------------------------------------- /source/etc/TransAG/conventions/wordlists.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /source/libs/live555/mediaServer/version.hh: -------------------------------------------------------------------------------- 1 | // Copyright (c) 1996-2008, Live Networks, Inc. All rights reserved 2 | // Version information for the LIVE555 Media Server application 3 | // Header file 4 | 5 | #ifndef _MEDIA_SERVER_VERSION_HH 6 | #define _MEDIA_SERVER_VERSION_HH 7 | 8 | #define MEDIA_SERVER_VERSION_STRING "0.19" 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/ag/regerror.ih: -------------------------------------------------------------------------------- 1 | /* ========= begin header generated by ./mkh ========= */ 2 | #ifdef __cplusplus 3 | extern "C" { 4 | #endif 5 | 6 | /* === regerror.c === */ 7 | static char *regatoi(const regex_t *preg, char *localbuf); 8 | 9 | #ifdef __cplusplus 10 | } 11 | #endif 12 | /* ========= end header generated by ./mkh ========= */ 13 | -------------------------------------------------------------------------------- /source/libs/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.6) 2 | 3 | # --- Core Libraries --- 4 | add_subdirectory(aglib-2.0.1) 5 | #add_subdirectory(gtkspell-2.0.11-patch-BT) 6 | add_subdirectory(live555) 7 | add_subdirectory(soundtouch-1.4.0) 8 | 9 | # --- Win32 --- 10 | if(WIN32 AND NOT MINGW) 11 | add_subdirectory(portaudio) 12 | endif(WIN32 AND NOT MINGW) 13 | 14 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/formats/TRS/iso639.h: -------------------------------------------------------------------------------- 1 | /** 2 | * ISO639 language codes 3 | */ 4 | 5 | namespace ISO639 { 6 | 7 | const char* get3LetterCode(const char* two_letter_code); 8 | const char* get2LetterCode(const char* three_letter_code); 9 | const char* getLanguageName(const char* three_letter_code, const char* locale="fre"); 10 | 11 | } /* namespace ISO639 */ 12 | -------------------------------------------------------------------------------- /source/libs/live555/groupsock/include/groupsock_version.hh: -------------------------------------------------------------------------------- 1 | // Version information for the "groupsock" library 2 | // Copyright (c) 1996-2008 Live Networks, Inc. All rights reserved. 3 | 4 | #ifndef _GROUPSOCK_VERSION_HH 5 | #define _GROUPSOCK_VERSION_HH 6 | 7 | #define GROUPSOCK_LIBRARY_VERSION_STRING "2008.07.24" 8 | #define GROUPSOCK_LIBRARY_VERSION_INT 1216857600 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /source/libs/live555/liveMedia/include/liveMedia_version.hh: -------------------------------------------------------------------------------- 1 | // Version information for the "liveMedia" library 2 | // Copyright (c) 1996-2008 Live Networks, Inc. All rights reserved. 3 | 4 | #ifndef _LIVEMEDIA_VERSION_HH 5 | #define _LIVEMEDIA_VERSION_HH 6 | 7 | #define LIVEMEDIA_LIBRARY_VERSION_STRING "2008.07.24" 8 | #define LIVEMEDIA_LIBRARY_VERSION_INT 1216857600 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /source/src/Common/tsub.cc: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | using namespace std; 4 | int main () 5 | { 6 | string s = "AGSet 'TOTO` already exists!"; 7 | unsigned int pos = s.find_first_of("`'"); 8 | if ( pos != string::npos ) { 9 | string sub = s.substr(pos+1, s.find_first_of("`'", pos+1)-pos-1); 10 | cout << "SUB = " << sub << endl; 11 | } 12 | 13 | 14 | } 15 | 16 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/doc/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = dtd 2 | 3 | EXTRA_DIST = \ 4 | agdb.html getting.html java_wrapper.html \ 5 | changes.html index.html python_wrapper.html \ 6 | components.html install.html tcl_wrapper.html \ 7 | formats.html install_bin.html \ 8 | archi.gif layout.gif \ 9 | cag.txt 10 | 11 | dist-hook: 12 | tar cf - api --exclude=CVS | (cd $(distdir); tar xf -) 13 | 14 | -------------------------------------------------------------------------------- /source/etc/TransAG/toolsAG.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /source/libs/live555/testProgs/testMPEG1or2AudioVideo.sdp: -------------------------------------------------------------------------------- 1 | v=0 2 | o=- 49451 3 IN IP4 127.0.0.1 3 | s=Test MPEG Audio+Video session 4 | i=Parameters for the session streamed by "testMPEG1or2AudioVideoStreamer" 5 | t=0 0 6 | a=tool:testMPEG1or2AudioVideoStreamer 7 | a=type:broadcast 8 | m=audio 6666 RTP/AVP 14 9 | c=IN IP4 239.255.42.42/127 10 | m=video 8888 RTP/AVP 32 11 | c=IN IP4 239.255.42.42/127 12 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/ag/AGException.cc: -------------------------------------------------------------------------------- 1 | // AGException.cc: implementation of AGException class 2 | // Author: Xiaoyi Ma, Steven Bird 3 | // Copyright (C) 2001-2003 Linguistic Data Consortium, U Penn. 4 | // Web: http://www.ldc.upenn.edu/; Email: ldc@ldc.upenn.edu 5 | // For license information, see the file `LICENSE' included 6 | // with the distribution. 7 | 8 | 9 | #include 10 | -------------------------------------------------------------------------------- /source/libs/live555/configure: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "Whoa! This software distribution does NOT use the normal Unix \"configure\" mechanism for generating a Makefile. For instructions on how to build this software, see ." 4 | echo "Also, please make sure that you're using the most up-to-date version of the source code - available from ." 5 | -------------------------------------------------------------------------------- /source/libs/portaudio/README-CMAKE-BT: -------------------------------------------------------------------------------- 1 | --------------------------- 2 | README - CMake build system 3 | Bertin Technologies 4 | --------------------------- 5 | 6 | GNU Autotools is the original build system for PortAudio. 7 | In order to have a coherent build system on the whole source tree, we added CMake integration, 8 | which also provides native cross-platform support (Linux, MacOSx, Windows,...). 9 | 10 | -------------------------------------------------------------------------------- /source/libs/live555/README-CMAKE-BT: -------------------------------------------------------------------------------- 1 | --------------------------- 2 | README - CMake build system 3 | Bertin Technologies 4 | --------------------------- 5 | 6 | LiveMedia source contains a custom cross-platform build system. 7 | In order to have a coherent build system on the whole source tree, we added CMake integration, 8 | which also provides native cross-platform support (Linux, MacOSx, Windows,...). 9 | 10 | -------------------------------------------------------------------------------- /source/etc/TransAG/conventions/import_mapping/chat.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | 7 |
8 |
9 |
10 | -------------------------------------------------------------------------------- /source/etc/TransAG/conventions/import_mapping/sgml.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | 7 |
8 |
9 |
10 | -------------------------------------------------------------------------------- /source/etc/TransAG/conventions/import_mapping/vrxml.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | 7 |
8 |
9 |
10 | -------------------------------------------------------------------------------- /source/libs/soundtouch-1.4.0/README-CMAKE-BT: -------------------------------------------------------------------------------- 1 | --------------------------- 2 | README - CMake build system 3 | Bertin Technologies 4 | --------------------------- 5 | 6 | GNU Autotools is the original build system for SoundTouch. 7 | In order to have a coherent build system on the whole source tree, we added CMake integration, 8 | which also provides native cross-platform support (Linux, MacOSx, Windows,...). 9 | 10 | -------------------------------------------------------------------------------- /source/etc/TransAG/conventions/import_mapping/ctm.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | 7 |
8 |
9 |
10 | -------------------------------------------------------------------------------- /source/etc/TransAG/conventions/import_mapping/lbl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | 7 |
8 |
9 |
10 | -------------------------------------------------------------------------------- /source/etc/TransAG/conventions/import_mapping/stm.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | 7 |
8 |
9 |
10 | -------------------------------------------------------------------------------- /source/etc/TransAG/conventions/import_mapping/vsft.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | 7 |
8 |
9 |
10 | -------------------------------------------------------------------------------- /source/libs/soundtouch-1.4.0/soundtouch-1.4.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | Name: SoundTouch 7 | Description: SoundTouch is an open-source audio processing library for changing the Tempo, Pitch and Playback Rates of audio streams or files 8 | Version: @VERSION@ 9 | Libs: -L${libdir} -lSoundTouch 10 | Cflags: -I${includedir}/soundtouch 11 | 12 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/ag/README: -------------------------------------------------------------------------------- 1 | This directory contains the source files of the AG core library (a.k.a. the 2 | AG kernel), which stores and manipulates the internal data structure of any 3 | annotation tools that are built upon it. Indexing of annotation data is 4 | done so that searching and looking-up can be performed efficiently. 5 | 6 | This directory is part of the Annotation Graph Toolkit (AGTK): 7 | http://agtk.sf.net 8 | -------------------------------------------------------------------------------- /source/etc/TransAG/conventions/import_mapping/transag_compat.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | 7 |
8 |
9 |
10 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/demo/atis2wsj.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | #cat $1 | sed 's/( END_OF_TEXT_UNIT )//' \ 4 | # | sed 's/( @[^ ]*\/CD )//' \ 5 | # | sed 'sX\\/X/Xg' \ 6 | # | sed 'sX\([^ ]*\)/\([^ ]*\)X(\2 \1)Xg' \ 7 | # | sed 's/XXX/-NONE-/g' 8 | 9 | cat $1 | sed 's/( END_OF_TEXT_UNIT )//' \ 10 | | sed 'sX\\/X/Xg' \ 11 | | sed 'sX\([^ ]*\)/\([^ ]*\)X(\2 \1)Xg' \ 12 | | sed 's/XXX/-NONE-/g' 13 | -------------------------------------------------------------------------------- /source/libs/live555/UsageEnvironment/include/UsageEnvironment_version.hh: -------------------------------------------------------------------------------- 1 | // Version information for the "UsageEnvironment" library 2 | // Copyright (c) 1996-2008 Live Networks, Inc. All rights reserved. 3 | 4 | #ifndef _USAGEENVIRONMENT_VERSION_HH 5 | #define _USAGEENVIRONMENT_VERSION_HH 6 | 7 | #define USAGEENVIRONMENT_LIBRARY_VERSION_STRING "2008.07.24" 8 | #define USAGEENVIRONMENT_LIBRARY_VERSION_INT 1216857600 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /debian/patches/compile_everything_with_single_cmake.patch: -------------------------------------------------------------------------------- 1 | Index: transcriber-ag-2.0.0/CMakeLists.txt 2 | =================================================================== 3 | --- /dev/null 1970-01-01 00:00:00.000000000 +0000 4 | +++ transcriber-ag-2.0.0/CMakeLists.txt 2011-12-09 18:59:09.000000000 +0100 5 | @@ -0,0 +1,5 @@ 6 | + 7 | +cmake_minimum_required (VERSION 2.6) 8 | +add_subdirectory (libs) 9 | +add_subdirectory (source) 10 | + 11 | -------------------------------------------------------------------------------- /source/libs/portaudio/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # ----------------------------------- 2 | # --- PortAudio Library - Project --- 3 | # ----------------------------------- 4 | 5 | # --- CMake Internals --- 6 | cmake_minimum_required (VERSION 2.6) 7 | 8 | # --- Project Root Name --- 9 | project (PORTAUDIO) 10 | 11 | # --- Global variables --- 12 | set (SRC ${PORTAUDIO_SOURCE_DIR}) 13 | 14 | # --- Directories --- 15 | add_subdirectory (src) 16 | 17 | -------------------------------------------------------------------------------- /source/libs/live555/BasicUsageEnvironment/include/BasicUsageEnvironment_version.hh: -------------------------------------------------------------------------------- 1 | // Version information for the "BasicUsageEnvironment" library 2 | // Copyright (c) 1996-2008 Live Networks, Inc. All rights reserved. 3 | 4 | #ifndef _BASICUSAGEENVIRONMENT_VERSION_HH 5 | #define _BASICUSAGEENVIRONMENT_VERSION_HH 6 | 7 | #define BASICUSAGEENVIRONMENT_LIBRARY_VERSION_STRING "2008.07.24" 8 | #define BASICUSAGEENVIRONMENT_LIBRARY_VERSION_INT 1216857600 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /source/libs/live555/config.sunos: -------------------------------------------------------------------------------- 1 | COMPILE_OPTS = $(INCLUDES) -I. -DBSD=1 -O 2 | C = c 3 | C_COMPILER = cc 4 | C_FLAGS = $(COMPILE_OPTS) 5 | CPP = cc 6 | CPLUSPLUS_COMPILER = c++ 7 | CPLUSPLUS_FLAGS = $(COMPILE_OPTS) -Wall 8 | OBJ = o 9 | LINK = c++ -o 10 | LINK_OPTS = -L. 11 | CONSOLE_LINK_OPTS = $(LINK_OPTS) 12 | LIBRARY_LINK = ld -o 13 | LIBRARY_LINK_OPTS = $(LINK_OPTS) -r -Bstatic 14 | LIB_SUFFIX = a 15 | LIBS_FOR_CONSOLE_APPLICATION = 16 | LIBS_FOR_GUI_APPLICATION = 17 | EXE = 18 | -------------------------------------------------------------------------------- /source/libs/live555/config.irix: -------------------------------------------------------------------------------- 1 | COMPILE_OPTS = $(INCLUDES) -I. -O 2 | C = c 3 | C_COMPILER = cc 4 | C_FLAGS = $(COMPILE_OPTS) -DIRIX 5 | CPP = cpp 6 | CPLUSPLUS_COMPILER = c++ 7 | CPLUSPLUS_FLAGS = $(COMPILE_OPTS) -Wall -DIRIX 8 | OBJ = o 9 | LINK = c++ -o 10 | LINK_OPTS = -L. 11 | CONSOLE_LINK_OPTS = $(LINK_OPTS) 12 | LIBRARY_LINK = ld -o 13 | LIBRARY_LINK_OPTS = $(LINK_OPTS) -r -B static 14 | LIB_SUFFIX = a 15 | LIBS_FOR_CONSOLE_APPLICATION = 16 | LIBS_FOR_GUI_APPLICATION = 17 | EXE = 18 | -------------------------------------------------------------------------------- /source/etc/TransAG/configurationQualifiersAG.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 11 | 12 | 13 | 17 | -------------------------------------------------------------------------------- /source/etc/TransAG/configurationAG.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 11 | 12 | 13 | 17 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/README-CMAKE-BT: -------------------------------------------------------------------------------- 1 | --------------------------- 2 | README - CMake build system 3 | Bertin Technologies 4 | --------------------------- 5 | 6 | GNU Autotools is the original build system for AGLIB. 7 | 8 | In order to have a coherent build system on the whole source tree, we added CMake integration, 9 | which also provides native cross-platform support (Linux, MacOSx, Windows,...). 10 | 11 | Notice that we only needed the AG format, so the CMakeList of the formats directory only builds the AG format. 12 | 13 | -------------------------------------------------------------------------------- /source/libs/live555/config.alpha: -------------------------------------------------------------------------------- 1 | COMPILE_OPTS = $(INCLUDES) -I. -O -DTIME_BASE=int 2 | C = c 3 | C_COMPILER = cc 4 | C_FLAGS = $(COMPILE_OPTS) -DALPHA 5 | CPP = cpp 6 | CPLUSPLUS_COMPILER = c++ 7 | CPLUSPLUS_FLAGS = $(COMPILE_OPTS) -Wall -DBSD=1 -DALPHA 8 | OBJ = o 9 | LINK = c++ -o 10 | LINK_OPTS = -L. 11 | CONSOLE_LINK_OPTS = $(LINK_OPTS) 12 | LIBRARY_LINK = ld -o 13 | LIBRARY_LINK_OPTS = $(LINK_OPTS) -r -B static 14 | LIB_SUFFIX = a 15 | LIBS_FOR_CONSOLE_APPLICATION = 16 | LIBS_FOR_GUI_APPLICATION = 17 | EXE = 18 | -------------------------------------------------------------------------------- /source/libs/live555/config.macosx-before-version-10.4: -------------------------------------------------------------------------------- 1 | COMPILE_OPTS = $(INCLUDES) -I. -DBSD=1 -O -DSOCKLEN_T=int 2 | C = c 3 | C_COMPILER = cc 4 | C_FLAGS = $(COMPILE_OPTS) 5 | CPP = cpp 6 | CPLUSPLUS_COMPILER = c++ 7 | CPLUSPLUS_FLAGS = $(COMPILE_OPTS) -Wall 8 | OBJ = o 9 | LINK = c++ -o 10 | LINK_OPTS = -L. 11 | CONSOLE_LINK_OPTS = $(LINK_OPTS) 12 | LIBRARY_LINK = ld -o 13 | LIBRARY_LINK_OPTS = $(LINK_OPTS) -r 14 | LIB_SUFFIX = a 15 | LIBS_FOR_CONSOLE_APPLICATION = 16 | LIBS_FOR_GUI_APPLICATION = 17 | EXE = 18 | -------------------------------------------------------------------------------- /source/libs/portaudio/bindings/cpp/source/portaudiocpp/CallbackStream.cxx: -------------------------------------------------------------------------------- 1 | #include "portaudiocpp/CallbackStream.hxx" 2 | 3 | namespace portaudio 4 | { 5 | CallbackStream::CallbackStream() 6 | { 7 | } 8 | 9 | CallbackStream::~CallbackStream() 10 | { 11 | } 12 | 13 | // ----------------------------------------------------------------------------------- 14 | 15 | double CallbackStream::cpuLoad() const 16 | { 17 | return Pa_GetStreamCpuLoad(stream_); 18 | } 19 | 20 | } // namespace portaudio 21 | -------------------------------------------------------------------------------- /source/libs/live555/config.aix: -------------------------------------------------------------------------------- 1 | COMPILE_OPTS = $(INCLUDES) -I. -DBSD=1 -O -DTIME_BASE=int -DSOCKLEN_T=socklen_t 2 | C = c 3 | C_COMPILER = cc 4 | C_FLAGS = $(COMPILE_OPTS) 5 | CPP = cpp 6 | CPLUSPLUS_COMPILER = c++ 7 | CPLUSPLUS_FLAGS = $(COMPILE_OPTS) -Wall -DAIX=1 8 | OBJ = o 9 | LINK = c++ -o 10 | LINK_OPTS = -L. 11 | CONSOLE_LINK_OPTS = $(LINK_OPTS) 12 | LIBRARY_LINK = ld -o 13 | LIBRARY_LINK_OPTS = $(LINK_OPTS) -r 14 | LIB_SUFFIX = a 15 | LIBS_FOR_CONSOLE_APPLICATION = 16 | LIBS_FOR_GUI_APPLICATION = 17 | EXE = 18 | -------------------------------------------------------------------------------- /source/libs/live555/config.openbsd: -------------------------------------------------------------------------------- 1 | .SUFFIXES: .cpp 2 | COMPILE_OPTS = $(INCLUDES) -I. -DBSD=1 -O -DSOCKLEN_T=socklen_t 3 | C = c 4 | C_COMPILER = cc 5 | C_FLAGS = $(COMPILE_OPTS) 6 | CPP = cpp 7 | CPLUSPLUS_COMPILER = c++ 8 | CPLUSPLUS_FLAGS = $(COMPILE_OPTS) -Wall -DAIX=1 9 | OBJ = o 10 | LINK = c++ -o 11 | LINK_OPTS = -L. 12 | CONSOLE_LINK_OPTS = $(LINK_OPTS) 13 | LIBRARY_LINK = ld -o 14 | LIBRARY_LINK_OPTS = $(LINK_OPTS) -r 15 | LIB_SUFFIX = a 16 | LIBS_FOR_CONSOLE_APPLICATION = 17 | LIBS_FOR_GUI_APPLICATION = 18 | EXE = 19 | -------------------------------------------------------------------------------- /source/libs/live555/config.freebsd: -------------------------------------------------------------------------------- 1 | COMPILE_OPTS = $(INCLUDES) -I. -DBSD=1 -O -DSOCKLEN_T=socklen_t -DHAVE_SOCKADDR_LEN=1 2 | C = c 3 | C_COMPILER = cc 4 | C_FLAGS = $(COMPILE_OPTS) 5 | CPP = cpp 6 | CPLUSPLUS_COMPILER = c++ 7 | CPLUSPLUS_FLAGS = $(COMPILE_OPTS) -Wall 8 | OBJ = o 9 | LINK = c++ -o 10 | LINK_OPTS = -L. 11 | CONSOLE_LINK_OPTS = $(LINK_OPTS) 12 | LIBRARY_LINK = ld -o 13 | LIBRARY_LINK_OPTS = $(LINK_OPTS) -r -Bstatic 14 | LIB_SUFFIX = a 15 | LIBS_FOR_CONSOLE_APPLICATION = 16 | LIBS_FOR_GUI_APPLICATION = 17 | EXE = 18 | -------------------------------------------------------------------------------- /source/src/Common/util/trace.cpp: -------------------------------------------------------------------------------- 1 | /********************************************************************************/ 2 | /*************** Copyright (C) 2006-2011 Bertin Technologies, SAS **************/ 3 | /* TranscriberAG */ 4 | /* */ 5 | /* See COPYING for license information */ 6 | /* */ 7 | /********************************************************************************/ 8 | #include "Common/globals.h" 9 | 10 | std::ofstream fdevnull("/dev/null"); 11 | -------------------------------------------------------------------------------- /source/src/Editors/AnnotationEditor/menus/annotation_menus.h: -------------------------------------------------------------------------------- 1 | /* 2 | * menus.h 3 | * 4 | * Created on: 28 janv. 2010 5 | * Author: lecuyer 6 | */ 7 | 8 | #ifndef MENUS_H_ 9 | #define MENUS_H_ 10 | 11 | #include "Editors/AnnotationEditor/menus/SpeakerMenu.h" 12 | #include "Editors/AnnotationEditor/menus/QualifiersMenu.h" 13 | #include "Editors/AnnotationEditor/menus/SectionMenu.h" 14 | #include "Editors/AnnotationEditor/menus/BackgroundMenu.h" 15 | #include "Editors/AnnotationEditor/menus/UnitMenu.h" 16 | 17 | #endif /* MENUS_H_ */ 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.pc 3 | 4 | # Cmake 5 | CMakeCache.txt 6 | CMakeFiles 7 | CPackConfig.cmake 8 | CPackSourceConfig.cmake 9 | Makefile 10 | cmake_install.cmake 11 | install_manifest.txt 12 | 13 | 14 | # Compiled Object files 15 | *.slo 16 | *.lo 17 | *.o 18 | *.obj 19 | 20 | # Compiled Dynamic libraries 21 | *.so 22 | *.dylib 23 | *.dll 24 | 25 | # Fortran module files 26 | *.mod 27 | 28 | # Compiled Static libraries 29 | *.lai 30 | *.la 31 | *.a 32 | *.lib 33 | 34 | # Executables 35 | *.exe 36 | *.out 37 | *.app 38 | 39 | config.h 40 | 41 | -------------------------------------------------------------------------------- /source/etc/TransAG/conventions/wordlists.eng: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | yeah 9 | yeark 10 | grmph 11 | damn 12 | gosh 13 | 14 | 15 | -------------------------------------------------------------------------------- /source/libs/live555/config.cygwin: -------------------------------------------------------------------------------- 1 | COMPILE_OPTS = $(INCLUDES) -I. -O -DSOCKLEN_T=socklen_t 2 | C = c 3 | C_COMPILER = gcc 4 | C_FLAGS = $(COMPILE_OPTS) -DUSE_OUR_BZERO=1 -D__CYGWIN__ 5 | CPP = cpp 6 | CPLUSPLUS_COMPILER = c++ 7 | CPLUSPLUS_FLAGS = $(COMPILE_OPTS) -Wall -DBSD=1 8 | OBJ = o 9 | LINK = c++ -o 10 | LINK_OPTS = -L. 11 | CONSOLE_LINK_OPTS = $(LINK_OPTS) 12 | LIBRARY_LINK = ld -o 13 | LIBRARY_LINK_OPTS = $(LINK_OPTS) -r -Bstatic 14 | LIB_SUFFIX = a 15 | LIBS_FOR_CONSOLE_APPLICATION = 16 | LIBS_FOR_GUI_APPLICATION = 17 | EXE = 18 | -------------------------------------------------------------------------------- /source/libs/live555/config.macosx: -------------------------------------------------------------------------------- 1 | COMPILE_OPTS = $(INCLUDES) -I. $(EXTRA_LDFLAGS) -DBSD=1 -O -DSOCKLEN_T=socklen_t -DHAVE_SOCKADDR_LEN=1 2 | C = c 3 | C_COMPILER = cc 4 | C_FLAGS = $(COMPILE_OPTS) 5 | CPP = cpp 6 | CPLUSPLUS_COMPILER = c++ 7 | CPLUSPLUS_FLAGS = $(COMPILE_OPTS) -Wall 8 | OBJ = o 9 | LINK = c++ -o 10 | LINK_OPTS = -L. 11 | CONSOLE_LINK_OPTS = $(LINK_OPTS) 12 | LIBRARY_LINK = ld -o 13 | LIBRARY_LINK_OPTS = $(LINK_OPTS) -r 14 | LIB_SUFFIX = a 15 | LIBS_FOR_CONSOLE_APPLICATION = 16 | LIBS_FOR_GUI_APPLICATION = 17 | EXE = 18 | -------------------------------------------------------------------------------- /source/src/GUI/Tree/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # ---------------------------------- 2 | # --- TranscriberAG - CMake File --- 3 | # ---------------------------------- 4 | 5 | # --- Includes --- 6 | include_directories( 7 | ${SRC}/Common 8 | # ${GTKSPELL} 9 | ) 10 | 11 | 12 | # --- Links --- 13 | link_directories() 14 | 15 | 16 | # --- Libraries --- 17 | add_library( 18 | TreeModule 19 | STATIC 20 | 21 | # --- Sources --- 22 | Explorer_tree.cpp 23 | TreeModel_Columns.cpp 24 | TreeView_mod.cpp 25 | Explorer_tooltip.cpp 26 | TreeManager.cpp 27 | ) 28 | 29 | -------------------------------------------------------------------------------- /source/libs/portaudio/fixdir.bat: -------------------------------------------------------------------------------- 1 | rem Use Astyle to fix style in 'C' files 2 | cd %1% 3 | 4 | fixlines -p *.c 5 | fixlines -p *.cpp 6 | fixlines -p *.cc 7 | 8 | astyle --style=ansi -c -o --convert-tabs --indent-preprocessor *.c 9 | astyle --style=ansi -c -o --convert-tabs --indent-preprocessor *.cpp 10 | astyle --style=ansi -c -o --convert-tabs --indent-preprocessor *.cc 11 | del *.orig 12 | @rem convert line terminators to Unix style LFs 13 | fixlines -u *.c 14 | fixlines -u *.cpp 15 | fixlines -u *.cc 16 | fixlines -u *.h 17 | del *.bak 18 | 19 | cd ..\ 20 | -------------------------------------------------------------------------------- /source/libs/soundtouch-1.4.0/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # ---------------------------- 2 | # --- SoundTouch - Project --- 3 | # ---------------------------- 4 | 5 | # --- CMake Internals --- 6 | cmake_minimum_required (VERSION 2.6) 7 | 8 | # --- Project Root Name --- 9 | project (SoundTouch) 10 | 11 | # --- Global Package Dependencies --- 12 | find_package (PkgConfig REQUIRED) 13 | 14 | # --- Global variables --- 15 | set (SRC ${SoundTouch_SOURCE_DIR}) 16 | 17 | # --- Directories --- 18 | add_subdirectory (include) 19 | add_subdirectory (source) 20 | 21 | -------------------------------------------------------------------------------- /source/libs/live555/config.solaris: -------------------------------------------------------------------------------- 1 | COMPILE_OPTS = $(INCLUDES) -I. -O -DSOLARIS -DSOCKLEN_T=socklen_t 2 | C = c 3 | C_COMPILER = cc 4 | C_FLAGS = $(COMPILE_OPTS) 5 | CPP = cpp 6 | CPLUSPLUS_COMPILER = c++ 7 | CPLUSPLUS_FLAGS = $(COMPILE_OPTS) -Wall 8 | OBJ = o 9 | LINK = c++ -o 10 | LINK_OPTS = -L. 11 | CONSOLE_LINK_OPTS = $(LINK_OPTS) 12 | LIBRARY_LINK = ld -o 13 | LIBRARY_LINK_OPTS = $(LINK_OPTS) -r -dn 14 | LIB_SUFFIX = a 15 | LIBS_FOR_CONSOLE_APPLICATION = -lsocket -lnsl 16 | LIBS_FOR_GUI_APPLICATION = $(LIBS_FOR_CONSOLE_APPLICATION) 17 | EXE = 18 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/formats/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # ---------------------------------- 2 | # --- AGLib (BT Patch) - Formats --- 3 | # ---------------------------------- 4 | 5 | add_subdirectory(AG) 6 | # add_subdirectory(ATLAS) 7 | # add_subdirectory(BAS) 8 | # add_subdirectory(BU) 9 | # add_subdirectory(CAG) 10 | # add_subdirectory(LCF) 11 | # add_subdirectory(SwitchBoard) 12 | # add_subdirectory(TF) 13 | # add_subdirectory(TIMIT) 14 | # add_subdirectory(TransAG) 15 | # add_subdirectory(TreeBank) 16 | # add_subdirectory(TRS) 17 | # add_subdirectory(XLabel) 18 | 19 | -------------------------------------------------------------------------------- /source/libs/live555/config.linux-gdb: -------------------------------------------------------------------------------- 1 | COMPILE_OPTS = $(INCLUDES) -I. -O -DSOCKLEN_T=socklen_t -g -D_LARGEFILE_SOURCE=1 -D_FILE_OFFSET_BITS=64 2 | C = c 3 | C_COMPILER = cc 4 | C_FLAGS = $(COMPILE_OPTS) 5 | CPP = cpp 6 | CPLUSPLUS_COMPILER = c++ 7 | CPLUSPLUS_FLAGS = $(COMPILE_OPTS) -Wall -DBSD=1 8 | OBJ = o 9 | LINK = c++ -o 10 | LINK_OPTS = -L. 11 | CONSOLE_LINK_OPTS = $(LINK_OPTS) 12 | LIBRARY_LINK = ld -o 13 | LIBRARY_LINK_OPTS = $(LINK_OPTS) -r -Bstatic 14 | LIB_SUFFIX = a 15 | LIBS_FOR_CONSOLE_APPLICATION = 16 | LIBS_FOR_GUI_APPLICATION = 17 | EXE = 18 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/README-PATCH-BT: -------------------------------------------------------------------------------- 1 | BERTIN TECHNOLOGIES - 2010.11.09 2 | ---------------------------------------------------------------------------------------------------------------- 3 | 4 | This version of AGLIB is the 2.0.1 version patched by {Bertin Technologies} . 5 | The code has been modified for fixing / improving some behaviours related to 6 | TranscriberAG. 7 | 8 | For compiling the patched version, use the cMake files. 9 | 10 | Modifications in code (source & headers) are surrounded by 11 | /* (( PATCH BT -- */ 12 | mymod ; 13 | /* -- PATCH BT )) */ 14 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/formats/TF/Makefile.am: -------------------------------------------------------------------------------- 1 | ## library name 2 | lib_LTLIBRARIES = agfio_plugin_TF.la 3 | 4 | ## headers 5 | noinst_HEADERS = TF.h TFfile.h 6 | 7 | ## sources 8 | agfio_plugin_TF_la_SOURCES = TF.cc TFfile.cc 9 | 10 | ## includes 11 | #agfio_plugin_TF_la_CXXFLAGS = -I../../ag 12 | AM_CPPFLAGS=-I../../ag 13 | 14 | ## libraries 15 | AM_LDFLAGS=-L../../ag -L../../ag/.libs 16 | agfio_plugin_TF_la_LIBADD = -lag 17 | 18 | ## 19 | agfio_plugin_TF_la_LDFLAGS = -no-undefined -module -version-info 1:0:0 20 | 21 | ## installation 22 | libdir=${prefix}/lib/ag 23 | 24 | -------------------------------------------------------------------------------- /source/src/GUI/Tools/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # ---------------------------------- 2 | # --- TranscriberAG - CMake File --- 3 | # ---------------------------------- 4 | 5 | # --- Includes --- 6 | include_directories( 7 | ${SRC}/Editors 8 | ${SRC}/Common 9 | ${SRC}/DataModel 10 | # ${GTKSPELL} 11 | ) 12 | 13 | 14 | # --- Links --- 15 | link_directories() 16 | 17 | 18 | # --- Libraries --- 19 | add_library( 20 | ToolsModule 21 | STATIC 22 | 23 | # --- Sources --- 24 | Clipboard.cpp 25 | Doc.cpp 26 | Explorer_menu.cpp 27 | TAGCommandLine.cpp 28 | NoteBook_mod.cpp 29 | ) 30 | 31 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/formats/BAS/Makefile.am: -------------------------------------------------------------------------------- 1 | ## library name 2 | lib_LTLIBRARIES = agfio_plugin_BAS.la 3 | 4 | ## headers 5 | noinst_HEADERS = BAS.h BASfile.h 6 | 7 | ## sources 8 | agfio_plugin_BAS_la_SOURCES = BAS.cc BASfile.cc 9 | 10 | ## includes 11 | #agfio_plugin_BAS_la_CXXFLAGS = -I../../ag 12 | AM_CPPFLAGS=-I../../ag 13 | 14 | ## libraries 15 | AM_LDFLAGS=-L../../ag -L../../ag/.libs 16 | agfio_plugin_BAS_la_LIBADD = -lag 17 | 18 | ## 19 | agfio_plugin_BAS_la_LDFLAGS = -no-undefined -module -version-info 1:0:0 20 | 21 | ## installation 22 | libdir=${prefix}/lib/ag 23 | 24 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/formats/LCF/Makefile.am: -------------------------------------------------------------------------------- 1 | ## library name 2 | lib_LTLIBRARIES = agfio_plugin_LCF.la 3 | 4 | ## headers 5 | noinst_HEADERS = LCF.h LCFfile.h 6 | 7 | ## sources 8 | agfio_plugin_LCF_la_SOURCES = LCF.cc LCFfile.cc 9 | 10 | ## includes 11 | #agfio_plugin_LCF_la_CXXFLAGS = -I../../ag 12 | AM_CPPFLAGS=-I../../ag 13 | 14 | ## libraries 15 | AM_LDFLAGS=-L../../ag -L../../ag/.libs 16 | agfio_plugin_LCF_la_LIBADD = -lag 17 | 18 | ## 19 | agfio_plugin_LCF_la_LDFLAGS = -no-undefined -module -version-info 1:0:0 20 | 21 | ## installation 22 | libdir=${prefix}/lib/ag 23 | 24 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | CXXFLAGS=-fPIC 4 | 5 | 6 | include /usr/share/cdbs/1/rules/upstream-tarball.mk 7 | include /usr/share/cdbs/1/rules/utils.mk 8 | include /usr/share/cdbs/1/rules/debhelper.mk 9 | include /usr/share/cdbs/1/class/cmake.mk 10 | 11 | DEB_TAR_SRCDIR := . 12 | DEB_SRCDIR := ./ 13 | 14 | common-install-arch:: 15 | dh_install 16 | $(RM) $(cdbs_make_curdestdir)/etc/TransAG/information/COPYING 17 | chmod 644 -R $(cdbs_make_curdestdir)/etc/ 18 | chmod a+X -R $(cdbs_make_curdestdir)/etc/ 19 | 20 | # Needed by upstream build process 21 | CDBS_BUILD_DEPENDS += 22 | -------------------------------------------------------------------------------- /source/doc/userman/html/fr/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | TranscriberAG Manual 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/formats/TF/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # ------------------------------------ 2 | # --- AGLib (BT Patch) - TF Format --- 3 | # ------------------------------------ 4 | 5 | # --- Includes --- 6 | include_directories( 7 | ${SRC}/ag 8 | ) 9 | 10 | 11 | # --- Links --- 12 | link_directories( 13 | ) 14 | 15 | 16 | # --- Libraries --- 17 | add_library( 18 | agfio_plugin_TF 19 | SHARED 20 | 21 | # --- Sources --- 22 | TF.cc 23 | TFfile.cc 24 | ) 25 | 26 | 27 | # --- Linking --- 28 | target_link_libraries( 29 | agfio_plugin_TF 30 | 31 | # -- Libraries -- 32 | ag 33 | ) 34 | 35 | -------------------------------------------------------------------------------- /source/doc/userman/html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | TranscriberAG Manual 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/formats/BAS/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # ------------------------------------- 2 | # --- AGLib (BT Patch) - BAS Format --- 3 | # ------------------------------------- 4 | 5 | # --- Includes --- 6 | include_directories( 7 | ${SRC}/ag 8 | ) 9 | 10 | 11 | # --- Links --- 12 | link_directories( 13 | ) 14 | 15 | 16 | # --- Libraries --- 17 | add_library( 18 | agfio_plugin_BAS 19 | SHARED 20 | 21 | # --- Sources --- 22 | BAS.cc 23 | BASfile.cc 24 | ) 25 | 26 | 27 | # --- Linking --- 28 | target_link_libraries( 29 | agfio_plugin_BAS 30 | 31 | # -- Libraries -- 32 | ag 33 | ) 34 | 35 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/formats/BU/Makefile.am: -------------------------------------------------------------------------------- 1 | ## library name 2 | lib_LTLIBRARIES = agfio_plugin_BU.la 3 | 4 | ## headers 5 | noinst_HEADERS = BU.h BUpos.h XLabelFile.h 6 | 7 | ## sources 8 | agfio_plugin_BU_la_SOURCES = BU.cc BUpos.cc XLabelFile.cc 9 | 10 | ## includes 11 | #agfio_plugin_BU_la_CXXFLAGS = -I../../ag 12 | AM_CPPFLAGS=-I../../ag 13 | 14 | ## libraries 15 | AM_LDFLAGS=-L../../ag -L../../ag/.libs 16 | agfio_plugin_BU_la_LIBADD = -lag 17 | 18 | ## 19 | agfio_plugin_BU_la_LDFLAGS = -no-undefined -module -version-info 1:0:0 20 | 21 | ## installation 22 | libdir=${prefix}/lib/ag 23 | 24 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/formats/LCF/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # ------------------------------------- 2 | # --- AGLib (BT Patch) - LCF Format --- 3 | # ------------------------------------- 4 | 5 | # --- Includes --- 6 | include_directories( 7 | ${SRC}/ag 8 | ) 9 | 10 | 11 | # --- Links --- 12 | link_directories( 13 | ) 14 | 15 | 16 | # --- Libraries --- 17 | add_library( 18 | agfio_plugin_LCF 19 | SHARED 20 | 21 | # --- Sources --- 22 | LCF.cc 23 | LCFfile.cc 24 | ) 25 | 26 | 27 | # --- Linking --- 28 | target_link_libraries( 29 | agfio_plugin_LCF 30 | 31 | # -- Libraries -- 32 | ag 33 | ) 34 | 35 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/formats/TIMIT/Makefile.am: -------------------------------------------------------------------------------- 1 | ## library name 2 | lib_LTLIBRARIES = agfio_plugin_TIMIT.la 3 | 4 | ## headers 5 | noinst_HEADERS = TIMIT.h TIMITfile.h 6 | 7 | ## sources 8 | agfio_plugin_TIMIT_la_SOURCES = TIMIT.cc TIMITfile.cc 9 | 10 | ## includes 11 | #agfio_plugin_TIMIT_la_CXXFLAGS = -I../../ag 12 | AM_CPPFLAGS=-I../../ag 13 | 14 | ## libraries 15 | AM_LDFLAGS=-L../../ag -L../../ag/.libs 16 | agfio_plugin_TIMIT_la_LIBADD = -lag 17 | 18 | ## 19 | agfio_plugin_TIMIT_la_LDFLAGS = -no-undefined -module -version-info 1:0:0 20 | 21 | ## installation 22 | libdir=${prefix}/lib/ag 23 | 24 | -------------------------------------------------------------------------------- /source/libs/live555/config.linux: -------------------------------------------------------------------------------- 1 | COMPILE_OPTS = $(INCLUDES) -I. -O2 -DSOCKLEN_T=socklen_t -D_LARGEFILE_SOURCE=1 -D_FILE_OFFSET_BITS=64 2 | C = c 3 | C_COMPILER = cc 4 | C_FLAGS = $(COMPILE_OPTS) 5 | CPP = cpp 6 | CPLUSPLUS_COMPILER = c++ 7 | CPLUSPLUS_FLAGS = $(COMPILE_OPTS) -Wall -Wno-deprecated 8 | OBJ = o 9 | LINK = c++ -o 10 | LINK_OPTS = -L. 11 | CONSOLE_LINK_OPTS = $(LINK_OPTS) 12 | LIBRARY_LINK = ld -o 13 | LIBRARY_LINK_OPTS = $(LINK_OPTS) -r -static 14 | LIB_SUFFIX = a 15 | LIBS_FOR_CONSOLE_APPLICATION = 16 | LIBS_FOR_GUI_APPLICATION = 17 | EXE = 18 | -------------------------------------------------------------------------------- /source/etc/TransAG/conventions/topics.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 10 | 11 | 12 | 16 | 17 | 21 | 22 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/formats/BU/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # ------------------------------------ 2 | # --- AGLib (BT Patch) - BU Format --- 3 | # ------------------------------------ 4 | 5 | # --- Includes --- 6 | include_directories( 7 | ${SRC}/ag 8 | ) 9 | 10 | 11 | # --- Links --- 12 | link_directories( 13 | ) 14 | 15 | 16 | # --- Libraries --- 17 | add_library( 18 | agfio_plugin_BU 19 | SHARED 20 | 21 | # --- Sources --- 22 | BU.cc 23 | BUpos.cc 24 | XLabelFile.cc 25 | ) 26 | 27 | 28 | # --- Linking --- 29 | target_link_libraries( 30 | agfio_plugin_BU 31 | 32 | # -- Libraries -- 33 | ag 34 | ) 35 | 36 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/formats/XLabel/Makefile.am: -------------------------------------------------------------------------------- 1 | ## library name 2 | lib_LTLIBRARIES = agfio_plugin_XLabel.la 3 | 4 | ## headers 5 | noinst_HEADERS = XLabel.h XLabelFile.h 6 | 7 | ## sources 8 | agfio_plugin_XLabel_la_SOURCES = XLabel.cc XLabelFile.cc 9 | 10 | ## includes 11 | #agfio_plugin_XLabel_la_CXXFLAGS = -I../../ag 12 | AM_CPPFLAGS=-I../../ag 13 | 14 | ## libraries 15 | AM_LDFLAGS=-L../../ag -L../../ag/.libs 16 | agfio_plugin_XLabel_la_LIBADD = -lag 17 | 18 | ## 19 | agfio_plugin_XLabel_la_LDFLAGS = -no-undefined -module -version-info 1:0:0 20 | 21 | ## installation 22 | libdir=${prefix}/lib/ag 23 | 24 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/formats/TIMIT/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # --------------------------------------- 2 | # --- AGLib (BT Patch) - TIMIT Format --- 3 | # --------------------------------------- 4 | 5 | # --- Includes --- 6 | include_directories( 7 | ${SRC}/ag 8 | ) 9 | 10 | 11 | # --- Links --- 12 | link_directories( 13 | ) 14 | 15 | 16 | # --- Libraries --- 17 | add_library( 18 | agfio_plugin_TIMIT 19 | SHARED 20 | 21 | # --- Sources --- 22 | TIMIT.cc 23 | TIMITfile.cc 24 | ) 25 | 26 | 27 | # --- Linking --- 28 | target_link_libraries( 29 | agfio_plugin_TIMIT 30 | 31 | # -- Libraries -- 32 | ag 33 | ) 34 | 35 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/ag/utils.h: -------------------------------------------------------------------------------- 1 | /* utility definitions */ 2 | #ifdef _POSIX2_RE_DUP_MAX 3 | #define DUPMAX _POSIX2_RE_DUP_MAX 4 | #else 5 | #define DUPMAX 255 6 | #endif 7 | #define INFINITY (DUPMAX + 1) 8 | #define NC (CHAR_MAX - CHAR_MIN + 1) 9 | typedef unsigned char uch; 10 | 11 | /* switch off assertions (if not already off) if no REDEBUG */ 12 | #ifndef REDEBUG 13 | #ifndef NDEBUG 14 | #define NDEBUG /* no assertions please */ 15 | #endif 16 | #endif 17 | #include 18 | 19 | /* for old systems with bcopy() but no memmove() */ 20 | #ifdef USEBCOPY 21 | #define memmove(d, s, c) bcopy(s, d, c) 22 | #endif 23 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/formats/XLabel/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # ---------------------------------------- 2 | # --- AGLib (BT Patch) - XLabel Format --- 3 | # ---------------------------------------- 4 | 5 | # --- Includes --- 6 | include_directories( 7 | ${SRC}/ag 8 | ) 9 | 10 | 11 | # --- Links --- 12 | link_directories( 13 | ) 14 | 15 | 16 | # --- Libraries --- 17 | add_library( 18 | agfio_plugin_XLabel 19 | SHARED 20 | 21 | # --- Sources --- 22 | XLabel.cc 23 | XLabelFile.cc 24 | ) 25 | 26 | 27 | # --- Linking --- 28 | target_link_libraries( 29 | agfio_plugin_XLabel 30 | 31 | # -- Libraries -- 32 | ag 33 | ) 34 | 35 | -------------------------------------------------------------------------------- /source/libs/soundtouch-1.4.0/README-PATCH-BT: -------------------------------------------------------------------------------- 1 | ----------------------- 2 | README - Custom patches 3 | Bertin Technologies 4 | ----------------------- 5 | 6 | This is a patched version of the original SoundTouch 1.4.0 source code. 7 | This code has been updated by Bertin Technologies, for fixing some technical 8 | issues and improving some behaviours. 9 | 10 | -------- 11 | Diff log 12 | -------- 13 | 14 | ** source/SoundTouch/TDStretch.cpp ** 15 | 16 | < assert(offset + seekWindowLength <= (int)inputBuffer.numSamples()); 17 | --- 18 | > 19 | > //assert(offset + seekWindowLength <= (int)inputBuffer.numSamples()); 20 | 21 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/formats/AG/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # ------------------------------------ 2 | # --- AGLib (BT Patch) - AG Format --- 3 | # ------------------------------------ 4 | 5 | # --- Includes --- 6 | include_directories( 7 | ${SRC}/ag 8 | ) 9 | 10 | 11 | # --- Links --- 12 | link_directories() 13 | 14 | 15 | # --- Libraries --- 16 | add_library( 17 | agfio_plugin_AG 18 | MODULE 19 | 20 | # --- Sources --- 21 | AG.cc 22 | SAX_AGHandlers.cc 23 | agfXercesUtils.cc 24 | ) 25 | 26 | 27 | # --- Linking --- 28 | target_link_libraries( 29 | agfio_plugin_AG 30 | 31 | # -- Libraries -- 32 | ag 33 | xerces-c 34 | ) 35 | 36 | -------------------------------------------------------------------------------- /source/src/MediaComponent/graphics/src/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # ------------------------------------- 2 | # --- PutPixel API : sample project --- 3 | # ------------------------------------- 4 | 5 | # --- Includes --- 6 | include_directories( 7 | ${SRC} 8 | ${GNOMECANVASMM_INCLUDE_DIRS} 9 | ) 10 | 11 | 12 | # --- Links --- 13 | link_directories( 14 | ${GNOMECANVASMM_LIBRARY_DIRS} 15 | ) 16 | 17 | 18 | # --- Library Definition --- 19 | add_executable( 20 | PutPixel 21 | 22 | # -- Sources -- 23 | GraphicsCanvas.cpp 24 | main.cpp 25 | ) 26 | 27 | target_link_libraries( 28 | PutPixel 29 | 30 | ${GNOMECANVASMM_LIBRARIES} 31 | ) 32 | 33 | -------------------------------------------------------------------------------- /source/src/Formats/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # ---------------------------------- 2 | # --- TranscriberAG - CMake File --- 3 | # ---------------------------------- 4 | 5 | # --- Subdirectories --- 6 | add_subdirectory (CHAT) 7 | add_subdirectory (CTM) 8 | add_subdirectory (LBL) 9 | add_subdirectory (STM) 10 | add_subdirectory (MDTM) 11 | add_subdirectory (HTML) 12 | add_subdirectory (TransAG) 13 | add_subdirectory (TransAG_compat) 14 | add_subdirectory (TRS) 15 | add_subdirectory (VRXML) 16 | add_subdirectory (TXT) 17 | add_subdirectory (SGML) 18 | #if (NOT LIBTAG) 19 | # add_subdirectory (SGML) 20 | # add_subdirectory (VSFT) 21 | #endif(NOT LIBTAG) 22 | -------------------------------------------------------------------------------- /source/src/GUI/Speaker/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # ---------------------------------- 2 | # --- TranscriberAG - CMake File --- 3 | # ---------------------------------- 4 | 5 | # --- Includes --- 6 | include_directories( 7 | ${SRC}/Editors 8 | ${SRC}/Common 9 | ${SRC}/DataModel 10 | # ${GTKSPELL} 11 | ) 12 | 13 | 14 | # --- Links --- 15 | link_directories() 16 | 17 | 18 | # --- Libraries --- 19 | add_library( 20 | SpeakerModule 21 | STATIC 22 | 23 | # --- Sources --- 24 | SpeakerDico_dialog.cpp 25 | ListModelColumns_language.cpp 26 | ListModel_Columns.cpp 27 | SpeakerData.cpp 28 | DictionaryManager.cpp 29 | ListView_mod.cpp 30 | ) 31 | 32 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/scripts/README: -------------------------------------------------------------------------------- 1 | This directory contains scripts and programs for various tasks. 2 | 3 | CreateAGTables.c 4 | 5 | - CreateAGTables creates database tables, which will be 6 | used to store AG data if you choose to enable database 7 | support, on the specified database server. 8 | 9 | - To enable database support, run configure with AGDB enabled, 10 | see the INSTALL section in the doc directory for details. 11 | 12 | - How to use CreateAGTables: 13 | Usage: CreateAGTables 14 | 15 | See the INSTALL document or the AG developer's manual for details 16 | about connection strings. 17 | 18 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/formats/SwitchBoard/Makefile.am: -------------------------------------------------------------------------------- 1 | ## library name 2 | lib_LTLIBRARIES = agfio_plugin_SwitchBoard.la 3 | 4 | ## headers 5 | noinst_HEADERS = SwitchBoard.h SWBfile.h 6 | 7 | ## sources 8 | agfio_plugin_SwitchBoard_la_SOURCES = SwitchBoard.cc SWBfile.cc 9 | 10 | ## includes 11 | #agfio_plugin_SwitchBoard_la_CXXFLAGS = -I../../ag 12 | AM_CPPFLAGS=-I../../ag 13 | 14 | ## libraries 15 | AM_LDFLAGS=-L../../ag -L../../ag/.libs 16 | agfio_plugin_SwitchBoard_la_LIBADD = -lag 17 | 18 | ## 19 | agfio_plugin_SwitchBoard_la_LDFLAGS = -no-undefined -module -version-info 1:0:0 20 | 21 | ## installation 22 | libdir=${prefix}/lib/ag 23 | 24 | -------------------------------------------------------------------------------- /source/libs/live555/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # ---------------------------------- 2 | # --- AGLib (BT Patch) - Project --- 3 | # ---------------------------------- 4 | 5 | # --- CMake Internals --- 6 | cmake_minimum_required (VERSION 2.6) 7 | 8 | # --- Project Root Name --- 9 | project (LIVE555) 10 | 11 | # --- Global Package Dependencies --- 12 | find_package (PkgConfig REQUIRED) 13 | 14 | # --- Global variables --- 15 | set (SRC ${LIVE555_SOURCE_DIR}) 16 | 17 | # --- Directories --- 18 | add_subdirectory (groupsock) 19 | add_subdirectory (liveMedia) 20 | add_subdirectory (UsageEnvironment) 21 | add_subdirectory (BasicUsageEnvironment) 22 | 23 | -------------------------------------------------------------------------------- /source/src/Editors/AnnotationEditor/dialogs/annotation_dialogs.h: -------------------------------------------------------------------------------- 1 | /* 2 | * annotation_dialogs.h 3 | * 4 | * Created on: 28 janv. 2010 5 | * Author: lecuyer 6 | */ 7 | 8 | #ifndef ANNOTATION_DIALOGS_H_ 9 | #define ANNOTATION_DIALOGS_H_ 10 | 11 | #include "Editors/AnnotationEditor/dialogs/QualifierPropertiesDialog.h" 12 | #include "Editors/AnnotationEditor/dialogs/SectionPropertiesDialog.h" 13 | #include "Editors/AnnotationEditor/dialogs/BackgroundDialog.h" 14 | #include "Editors/AnnotationEditor/dialogs/TurnPropertiesDialog.h" 15 | #include "Editors/AnnotationEditor/dialogs/AnchoredElementDialog.h" 16 | 17 | #endif /* ANNOTATION_DIALOGS_H_ */ 18 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/formats/CAG/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # ------------------------------------- 2 | # --- AGLib (BT Patch) - CAG Format --- 3 | # ------------------------------------- 4 | 5 | # --- Includes --- 6 | include_directories( 7 | ${SRC}/ag 8 | ${ZLIB_INCLUDE_DIR} 9 | ) 10 | 11 | 12 | # --- Links --- 13 | link_directories( 14 | ) 15 | 16 | 17 | # --- Libraries --- 18 | add_library( 19 | agfio_plugin_CAG 20 | SHARED 21 | 22 | # --- Sources --- 23 | CAG.cc 24 | gzstream.cc 25 | ) 26 | 27 | 28 | # --- Linking --- 29 | target_link_libraries( 30 | agfio_plugin_CAG 31 | 32 | # -- Libraries -- 33 | ag 34 | z 35 | ${ZLIB_LIBRARIES} 36 | ) 37 | 38 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/formats/SwitchBoard/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # --------------------------------------------- 2 | # --- AGLib (BT Patch) - SwitchBoard Format --- 3 | # --------------------------------------------- 4 | 5 | # --- Includes --- 6 | include_directories( 7 | ${SRC}/ag 8 | ) 9 | 10 | 11 | # --- Links --- 12 | link_directories( 13 | ) 14 | 15 | 16 | # --- Libraries --- 17 | add_library( 18 | agfio_plugin_SwitchBoard 19 | SHARED 20 | 21 | # --- Sources --- 22 | SwitchBoard.cc 23 | SWBfile.cc 24 | ) 25 | 26 | 27 | # --- Linking --- 28 | target_link_libraries( 29 | agfio_plugin_SwitchBoard 30 | 31 | # -- Libraries -- 32 | ag 33 | ) 34 | 35 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/formats/TRS/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # ---------------------------(--------- 2 | # --- AGLib (BT Patch) - TRS Format --- 3 | # --------------------------(---------- 4 | 5 | # --- Includes --- 6 | include_directories( 7 | ${SRC}/ag 8 | ) 9 | 10 | 11 | # --- Links --- 12 | link_directories( 13 | ) 14 | 15 | 16 | # --- Libraries --- 17 | add_library( 18 | agfio_plugin_TRS 19 | SHARED 20 | 21 | # --- Sources --- 22 | TRS.cc 23 | SAX_TRSHandlers.cc 24 | agfXercesUtils.cc 25 | iso639.cc 26 | ) 27 | 28 | 29 | # --- Linking --- 30 | target_link_libraries( 31 | agfio_plugin_TRS 32 | 33 | # -- Libraries -- 34 | xerces-c 35 | ag 36 | ) 37 | 38 | -------------------------------------------------------------------------------- /source/doc/userman/html/en/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | TranscriberAG Manual 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /source/src/Common/icons/IcoPackElement.cpp: -------------------------------------------------------------------------------- 1 | /********************************************************************************/ 2 | /*************** Copyright (C) 2006-2011 Bertin Technologies, SAS **************/ 3 | /* TranscriberAG */ 4 | /* */ 5 | /* See COPYING for license information */ 6 | /* */ 7 | /********************************************************************************/ 8 | 9 | #include "IcoPackElement.h" 10 | 11 | namespace tag { 12 | 13 | IcoPackElement::IcoPackElement() 14 | { 15 | } 16 | 17 | IcoPackElement::~IcoPackElement() 18 | { 19 | } 20 | 21 | } //namespace 22 | -------------------------------------------------------------------------------- /source/AUTHORS: -------------------------------------------------------------------------------- 1 | /********************************************************************************************/ 2 | /* Copyright (C) 2006-2011 Bertin Technologies, SAS */ 3 | /* TranscriberAG */ 4 | /********************************************************************************************/ 5 | 6 | AUTHORS 7 | ------------------------------------------------------------ 8 | FERRY Guillaume (ferry@bertin.fr) 9 | LECUYER Paule (lecuyer@bertin.fr) 10 | MONTILLA Jean-Marc (montilla@bertin.fr) 11 | 12 | 13 | CONTRIBUTORS 14 | ------------------------------------------------------------ 15 | PICOREAU Marc-Olivier 16 | RIVALS Samuel 17 | -------------------------------------------------------------------------------- /source/libs/live555/fix-makefile: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # the next line restarts using tclsh \ 3 | exec tclsh8.4 "$0" "$@" 4 | 5 | set makefileName [lindex $argv 0] 6 | set tmpfileName /tmp/rsftmp 7 | 8 | set inFid [open $makefileName r] 9 | set outFid [open $tmpfileName w] 10 | 11 | while {![eof $inFid]} { 12 | set line [gets $inFid] 13 | if {[string match *\)\$* $line]} { 14 | set pos [string first \)\$ $line] 15 | set prefix [string range $line 0 $pos] 16 | incr pos 17 | set suffix [string range $line $pos end] 18 | set line $prefix\ $suffix 19 | } 20 | 21 | puts $outFid $line 22 | } 23 | 24 | close $inFid 25 | close $outFid 26 | file rename -force $tmpfileName $makefileName 27 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/ag/agfioError.cc: -------------------------------------------------------------------------------- 1 | // agfioError.c: agfio error class implementation 2 | // Haejoong Lee, Xiaoyi Ma, Steven Bird 3 | // Copyright (C) 2001-2003 Linguistic Data Consortium, U Penn. 4 | // Web: http://www.ldc.upenn.edu/; Email: ldc@ldc.upenn.edu 5 | // For license information, see the file `LICENSE' included 6 | // with the distribution. 7 | 8 | 9 | #include 10 | 11 | agfioError::agfioError(const string& s) 12 | : msg("agf:" + s) 13 | { 14 | // print the error message at the moment of throwing an exception 15 | cerr << msg << endl; 16 | } 17 | 18 | const char* 19 | agfioError::what() const 20 | throw() 21 | { 22 | return msg.c_str(); 23 | } 24 | -------------------------------------------------------------------------------- /source/libs/aglib-2.0.1/src/formats/ATLAS/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # --------------------------------------- 2 | # --- AGLib (BT Patch) - ATLAS Format --- 3 | # --------------------------------------- 4 | 5 | # --- Includes --- 6 | include_directories( 7 | ${SRC}/ag 8 | ) 9 | 10 | 11 | # --- Links --- 12 | link_directories( 13 | ) 14 | 15 | 16 | # --- Libraries --- 17 | add_library( 18 | agfio_plugin_ATLAS 19 | SHARED 20 | 21 | # --- Sources --- 22 | ATLAS_load.cc 23 | ATLAS_store.cc 24 | SAX_ATLASHandlers.cc 25 | agfXercesUtils.cc 26 | ) 27 | 28 | 29 | # --- Linking --- 30 | target_link_libraries( 31 | agfio_plugin_ATLAS 32 | 33 | # -- Libraries -- 34 | xerces-c 35 | ag 36 | ) 37 | 38 | -------------------------------------------------------------------------------- /source/libs/live555/config.armlinux: -------------------------------------------------------------------------------- 1 | CROSS_COMPILE= arm-elf- 2 | COMPILE_OPTS = $(INCLUDES) -I. -O2 -DSOCKLEN_T=socklen_t -DNO_STRSTREAM=1 -D_LARGEFILE_SOURCE=1 -D_FILE_OFFSET_BITS=64 3 | C = c 4 | C_COMPILER = $(CROSS_COMPILE)gcc 5 | C_FLAGS = $(COMPILE_OPTS) 6 | CPP = cpp 7 | CPLUSPLUS_COMPILER = $(CROSS_COMPILE)gcc 8 | CPLUSPLUS_FLAGS = $(COMPILE_OPTS) -Wall -DBSD=1 9 | OBJ = o 10 | LINK = $(CROSS_COMPILE)gcc -o 11 | LINK_OPTS = -L. 12 | CONSOLE_LINK_OPTS = $(LINK_OPTS) 13 | LIBRARY_LINK = $(CROSS_COMPILE)ld -o 14 | LIBRARY_LINK_OPTS = $(LINK_OPTS) -r -Bstatic 15 | LIB_SUFFIX = a 16 | LIBS_FOR_CONSOLE_APPLICATION = 17 | LIBS_FOR_GUI_APPLICATION = 18 | EXE = 19 | -------------------------------------------------------------------------------- /source/libs/live555/config.qnx4: -------------------------------------------------------------------------------- 1 | # 2 | # Requires: 3 | # QNX 4.25 4 | # Watcom 10.6 5 | # TCP/IP 5.0 6 | # 7 | COMPILE_OPTS = $(INCLUDES) -I. -D_QNX4 -DBSD -DSOCKLEN_T=uint32_t -I/usr/watcom/10.6/usr/include 8 | C = c 9 | C_COMPILER = cc32 10 | C_FLAGS = $(COMPILE_OPTS) 11 | CPP = cpp 12 | CPLUSPLUS_COMPILER = cc32 13 | CPLUSPLUS_FLAGS = $(COMPILE_OPTS) -WC,-xs 14 | OBJ = o 15 | LINK = cc32 -b -M -N30000 -o 16 | LINK_OPTS = -l. 17 | CONSOLE_LINK_OPTS = $(LINK_OPTS) 18 | LIBRARY_LINK = wlib -n -b -c 19 | LIBRARY_LINK_OPTS = $(LINK_OPTS) 20 | LIB_SUFFIX = lib 21 | LIBS_FOR_CONSOLE_APPLICATION = -lsocket 22 | LIBS_FOR_GUI_APPLICATION = $(LIBS_FOR_CONSOLE_APPLICATION) 23 | EXE = 24 | -------------------------------------------------------------------------------- /source/libs/live555/config.uClinux: -------------------------------------------------------------------------------- 1 | COMPILE_OPTS = $(INCLUDES) -I. -O2 -DSOCKLEN_T=socklen_t -D_LARGEFILE_SOURCE=1 -D_FILE_OFFSET_BITS=64 2 | C = c 3 | C_COMPILER = $(CC) 4 | CFLAGS += $(COMPILE_OPTS) 5 | C_FLAGS = $(CFLAGS) 6 | CPP = cpp 7 | CPLUSPLUS_COMPILER = $(CXX) 8 | CPLUSPLUS_FLAGS = $(COMPILE_OPTS) -Wall -DBSD=1 9 | CPLUSPLUS_FLAGS += $(CPPFLAGS) -fexceptions 10 | OBJ = o 11 | LINK = $(CC) -o 12 | LINK_OPTS = -L. $(LDFLAGS) 13 | CONSOLE_LINK_OPTS = $(LINK_OPTS) 14 | LIBRARY_LINK = $(LD) -o 15 | LIBRARY_LINK_OPTS = -L. -r -Bstatic 16 | LIB_SUFFIX = a 17 | LIBS_FOR_CONSOLE_APPLICATION = $(CXXLIBS) 18 | LIBS_FOR_GUI_APPLICATION = $(LIBS_FOR_CONSOLE_APPLICATION) 19 | EXE = 20 | --------------------------------------------------------------------------------