Transcription of image content

This step plugin allows you to create transcriptions of works. The transcriptions are recorded without word or line coordinates.

Overview

NameWert

Identifier

intranda_step_transcription

Repository

Licence

GPL 2.0 or newer

Last change

25.07.2024 11:19:07

Introduction

The transcription plugin allows the user to edit the txt OCR results of a Goobi process. An image and a rich text editor are displayed side by side where the text can be captured.

Installation

To use the plugin, these two files must be copied to the following locations:

/opt/digiverso/goobi/plugins/step/plugin-intranda-step-transcription-base.jar
/opt/digiverso/goobi/plugins/GUI/plugin-intranda-step-transcription-gui.jar

The configuration of the plugin takes place within its configuration file plugin_intranda_step_transcription.xml. This is expected under the following path:

/opt/digiverso/goobi/config/plugin_intranda_step_transcription.xml

Overview and functionality

To put the plugin into operation, it must be activated for one or more desired tasks in the workflow. This is done as shown in the following screenshot by selecting the plugin intranda_step_transcription from the list of installed plugins.

Assigning the plugin to a specific task

As soon as a user subsequently accepts a task that contains this plugin, he can enter it from within the task.

Plugin within the accepted task

After entering the plugin, the user can browse through the image files. A rich text editor is displayed on the right-hand side of each page, showing any existing transcription or OCR results. In this editor, the previous result can now be corrected or a completely new text can be transcribed.

Plugin within the accepted task

ATTENTION: Please note that this plugin only allows a simple transcription of page content. It is not possible to enter coordinates for paragraphs, lines or words.

Configuration

The configuration of the plugin is as follows:

<config_plugin>
    <!--
        order of configuration is:
          1.) project name and step name matches
          2.) step name matches and project is *
          3.) project name matches and step name is *
          4.) project name and step name are *
    -->

    <config>
        <!-- which projects to use for (can be more then one, otherwise use *) -->
        <project>*</project>
        <step>*</step>

        <!-- which folder to use (master|main|jpeg|source|...) -->
        <imageFolder>master</imageFolder>

        <!-- display button to finish the task directly from within the entered plugin -->
        <allowTaskFinishButtons>true</allowTaskFinishButtons>
    </config>

</config_plugin>

The parameters within this configuration file have the following meanings:

ValueDescription

project

This parameter specifies for which project the current block <config> should apply. The name of the project is used here. This parameter can occur several times per <config> block.

step

This parameter controls for which steps the block <config> should apply. The name of the step is used here. This parameter can occur several times per <config> block.

imageFolder

Specify here from which directory the images are to be displayed. Possible values are e.g. master, media or individual folders like photos and scans.

allowTaskFinishButtons

This parameter can be used to enable buttons for completing the task to be displayed in the regular plugin interface so that the plugin does not have to be exited first.

Last updated