## SoftVideo Dataset

This is a dataset released from the paper
[SoftVideo: Improving the Learning Experience of Software Tutorial Videos with Collective Interaction Data (IUI 2022)](https://softvideo.kixlab.org/).

This dataset consists of 120 interaction logs across two tutorial videos ('Logo', 'Geometry') and Photoshop in use.

- Logo (n=60): [youtu.be/ifG1SDxqpAQ](https://youtu.be/ifG1SDxqpAQ)
- Geometry (n=60): [youtu.be/vcLjyGbF40Y](https://youtu.be/vcLjyGbF40Y)

The structure of each interaction log is as follows:

### \*.json

```
{
    "userlogs": {
    	"actions": ["Polygonal Lasso", ...], # Name of the actions performed on Photoshop
    	"paused": [false, ...], # Whether the video was paused (true) or not (false) when the action was performed
    	"timestampsVideo": [4.2134, ...] # Video timestamp when the action was performed
    	"timestampsUser": [15.321, ...], # User timestamp when the action was performed
    },
	"pause": {
		"videoTime": [1.524, ...], # Video timestamp when the video was paused
		"pauseDuration": [10.85, ...], # Duration of the pause
		"timestampsUser": [13.5832, ... ], # User timestamp when the video was paused
	},
	"jump": {
		"from": [24.592, ...] # Video timestamp of where the jump started from
		"to": [50.965, ...] # Video timestamp of where the jump ended at
		"timestampsUser": [84.212, ... ], # User timestamp when the video jump happend
	}
}
```

© 2022. This dataset is licensed under a [CC BY 4.0 license](https://creativecommons.org/licenses/by/4.0/).
