Metadata-Version: 2.3
Name: sociaML
Version: 0.1.4
Summary: sociaML - the Swiss Army knife for audiovisual and textual video feature extraction.
Author-email: David Zollikofer <david@zollikofer.co>
License: MIT
License-File: LICENSE.md
Requires-Python: <3.13,>=3.10
Requires-Dist: dataclasses-json>=0.6.7
Requires-Dist: librosa>=0.10.2.post1
Requires-Dist: moviepy>=1.0.3
Requires-Dist: nltk>=3.9.1
Requires-Dist: numpy>=2.0.2
Requires-Dist: onnxruntime>=1.20.0
Requires-Dist: openai-whisper>=20240930
Requires-Dist: pandas>=2.2.3
Requires-Dist: pip>=24.3.1
Requires-Dist: presidio-analyzer>=2.2.355
Requires-Dist: presidio-anonymizer>=2.2.355
Requires-Dist: py-feat>=0.6.1
Requires-Dist: pyannote-audio>=3.3.2
Requires-Dist: sentence-transformers>=3.2.1
Requires-Dist: spacy>=3.8.2
Requires-Dist: tiktoken>=0.8.0
Requires-Dist: torchvision>=0.20.1
Requires-Dist: tqdm>=4.66.6
Requires-Dist: webvtt-py>=0.5.1
Description-Content-Type: text/markdown

[![pdm-managed](https://img.shields.io/badge/pdm-managed-blueviolet)](https://pdm-project.org)
![GitHub License](https://img.shields.io/github/license/davidrzs/sociaML)
![PyPI - Version](https://img.shields.io/pypi/v/sociaML)

# sociaML - the Swiss Army knife for audiovisual and textual video feature extraction.

`sociaML` is a Python package designed for the automatic analysis of videos. It facilitates the extraction of audiovisual and textual features from videos, offering a comprehensive toolkit for researchers and developers working with multimedia data. With sociaML you can extract features relevant downstream research (eg social sciences) with little knowledge machine learning or even Python.

## Features

- **Transcription and Diarization**: Utilizes WhisperX for transcription and diarization.
- **Anonymization**: Incorporates Presidio for automatic anonymization of data.
- **Audio Features Extraction**: Extracts various audio features like emotions, MFCCs, speaking times, and silent times.
- **Visual Features Extraction**: Analyzes facial emotions, Facial Action Coding System, and facial posture.
- **Textual Features Extraction**: Provides analysis on Ekman emotions, sentiment, word/token counts, sentence embeddings, and more.


## Attention: Only tested on Linux and MacOS

## Usage


### Installation

Make sure you have https://www.ffmpeg.org/ installed on your system. It is a prerequisite for Whisper.

As the API is not stable yet, please install it directly from git

```bash
pip install git+https://github.com/davidrzs/sociaML
```

### General Architecture

SociaMLs pipeline can best be summarized by the following graphic:

![pipeline](https://raw.githubusercontent.com/davidrzs/sociaML/main/docs/images/pipeline.png?token=GHSAT0AAAAAACLXMZ3GTH4TYFX3ETB3LZWQZNDHXRA)


### Huggingface API Key

To run the pipeline you might need a Huggingface API Key which you get [here](https://huggingface.co/docs/hub/en/security-tokens).

You can make the huggingface token available as follows: 
```python
import os
os.environ["HUGGINGFACE_TOKEN"] = access_token
```

### Preprocessing

`sociaML` offers a preprocessing pipeline that converts videos into an intermediate JSON representation for efficient analysis. This step involves transcription, diarization, and anonymization.

```python
from sociaML.preprocessing import TranscriberAndDiarizer, Anonymizer, AudioExtractor

# Initialize components
transcriber = TranscriberAndDiarizer(pyannote_api_key=os.getenv('HUGGINGFACE_TOKEN'))
anonymizer = Anonymizer()
audio_extractor = AudioExtractor()

# Process video
audio_extractor.process(video_path, audio_path=audio_path)
transcript = transcriber.process(video_path)
transcript = anonymizer.process(transcript)
```

### Analysis

`sociaML` provides a flexible analysis framework, allowing for the extraction of various features at different levels: Contribution, Participant, and Global.

```python
from sociaML.analysis import Analysis, GlobalAudioEmotionAnalyzer, ParticipantAudioEmotionAnalyzer, ParticipantSentimentAnalyzer, GlobalEkmanEmotionAnalyzer, GlobalNLTKTokenCountAnalyzer, ContributionAudioEmotionAnalyzer

# Initialize Analysis with desired Analyzers
analyzer = Analysis(
    GlobalAudioEmotionAnalyzer(),
    ParticipantAudioEmotionAnalyzer(),
    ParticipantSentimentAnalyzer(),
    GlobalEkmanEmotionAnalyzer(), 
    GlobalNLTKTokenCountAnalyzer(), 
    ContributionAudioEmotionAnalyzer()
)

# Run analyses
global_feat, participant_feat, contribution_feat = analyzer.analyze(data_json, audio, sr, video)
```



## Explanation of Concepts

When analyzing multimedia content with sociaML, understanding the context of the interaction is as crucial as the content itself. To provide a nuanced analysis, sociaML collects features at three different levels: Global, Participant, and Contribution. Below, we explain these concepts with an example from Shakespeare's Hamlet.

See the figure below for an illustration of these concepts:

### Global Features

Global features are derived by aggregating data across the entire video, without distinguishing between different participants. This level provides an overall summary of the video's characteristics, such as the general sentiment or mood throughout the play. For example, in a performance of Hamlet, global features would analyze the cumulative emotional tone of the entire play, providing insights into the overarching emotional landscape.

### Participant Features

At the participant level, sociaML examines the data attributed to individual characters or speakers within the video. By focusing on each participant's contributions as a whole, we can compare and contrast different characters. For instance, in Hamlet, we could evaluate whether Hamlet exhibits a generally more negative sentiment compared to other characters like Horatio or Marcellus, or we might analyze the range of emotions that each character displays throughout the play.

### Contribution Features

The most granular level of analysis, contribution features, focuses on individual blocks of speech or action by a single participant. Each time a character speaks or performs an action uninterrupted, it's considered a single contribution. In our Hamlet example, this means analyzing specific speeches or soliloquies to determine the sentiment, emotions, and other features of that particular moment. For instance, we can analyze the emotional intensity of Hamlet's famous "To be, or not to be" soliloquy independently of the rest of the play.


![illustration of concepts](https://raw.githubusercontent.com/davidrzs/sociaML/main/docs/images/feature_matrix.png?token=GHSAT0AAAAAACLXMZ3H7UXHAADMIKXAKHZWZNDHXRA)

## Collaborating and Getting Involved 

If you have feature requests or want to co-develop this package please do not hesitate to reach out!


## Collaborators

Developer
- David Zollikofer zdavid@ethz.ch

Previous Developers:
- Loïc Cabon lcabon@ethz.ch

Technical guidance by 
- [Elliott Ash](https://elliottash.com/)
- [Aniket Kesari](https://www.aniketkesari.com/)



## Sources


This project stands on the shoulders of giants and merely provides a convenient wrapper for them. If you use sociaML in your research please cite the original models below:

> Jochen Hartmann, "Emotion English DistilRoBERTa-base". https://huggingface.co/j-hartmann/emotion-english-distilroberta-base/, 2022.

> Cheong, J. H., et al. "Py-Feat: Python facial expression analysis toolbox. arXiv [cs. CV]." 2021,

> Plaquet, Alexis, and Hervé Bredin. "Powerset multi-class cross entropy loss for neural speaker diarization." arXiv preprint arXiv:2310.13025 (2023).

> Bredin, H. (2023) pyannote.audio 2.1 speaker diarization pipeline: principle, benchmark, and recipe. Proc. INTERSPEECH 2023, 1983-1987, doi: 10.21437/Interspeech.2023-105

> Reimers, N. "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks." arXiv preprint arXiv:1908.10084 (2019).

> Daniel Loureiro, Francesco Barbieri, Leonardo Neves, Luis Espinosa Anke, and Jose Camacho-collados. 2022. TimeLMs: Diachronic Language Models from Twitter. In Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics: System Demonstrations, pages 251–260, Dublin, Ireland. Association for Computational Linguistics.

> Daniel Loureiro, Francesco Barbieri, Leonardo Neves, Luis Espinosa Anke, and Jose Camacho-collados. 2022. TimeLMs: Diachronic Language Models from Twitter. In Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics: System Demonstrations, pages 251–260, Dublin, Ireland. Association for Computational Linguistics.

## License

Code is licensed under the permissive MIT license. Certain modules we depend on have different licenses though!
