Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/frugglehost/TautulliBatch2Trakt
Powershell script to send Tautulli notificaions to Trakt
https://github.com/frugglehost/TautulliBatch2Trakt
plex scrobble tautulli trakt
Last synced: 5 days ago
JSON representation
Powershell script to send Tautulli notificaions to Trakt
- Host: GitHub
- URL: https://github.com/frugglehost/TautulliBatch2Trakt
- Owner: frugglehost
- License: gpl-3.0
- Created: 2022-05-07T12:11:40.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-18T15:50:00.000Z (about 1 year ago)
- Last Synced: 2024-08-01T21:57:15.857Z (3 months ago)
- Topics: plex, scrobble, tautulli, trakt
- Language: PowerShell
- Homepage:
- Size: 134 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Tautulli Batch 2 Trakt
## Table of Contents
* [Description](#description)
* [Getting Started](#getting-started)
* [Prerequisites](#prerequisites)
* [Installation](#installation)
* [Script Setup](#script-setup)
* [Tautulli](#tautulli)
* [Script Settings](#script-settings)
* [Usage](#usage)
* [License](#license)
* [Similar Projects](#similar-projects)## Description:
Powershell script to send Tautulli notificaions for multiple users to Trakt.## Getting Started
### Prerequisites
- Windows
- PowerShell 3 and higher### Installation
CD ""
Invoke-WebRequest https://raw.githubusercontent.com/frugglehost/TautulliBatch2Trakt/master/TautulliBatch2Trakt.ps1 -OutFile TautulliBatch2Trakt.ps1
ICACLS "TautulliBatch2Trakt.ps1" /grant:r "Everyone:(F)" /C### Script Setup
Create a new application https://trakt.tv/oauth/applications
Add the follow settings:**Name:** `TautulliBatch2Trakt`
**Redirect uri:** `urn:ietf:wg:oauth:2.0:oob`
**Permissions:** `/scrobble`**Save the Client ID and Client Secret**
Run script for initial setup and follow instructions
```
CD ""
Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope Process
# Press "Yes", Once the powershell window is closed the settings will revert back.
.\TautulliBatch2Trakt.ps1 -setup
```The script will automaticly copy the code for you to enter into Trakt.
### Tautulli
#### Add Script
- `Settings` > `Notification Agents` > `Add a Notification Agent` > `Script`### Script Settings
#### Configuration
- **Script Folder**
- ``
- **Script File**
- `TautulliBatch2Trakt.ps1`#### Triggers
- Playback Start
- Playback Stop
- Playback Pause
- Playback Resume
- Watched#### Arguments
- Playback Start / Playback Resume :
`-m {media_type} -s "{show_name}" -M "{title}" -y "{year}" -t "{thetvdb_id}" -i "{imdb_id}" -S {season_num} -E {episode_num} -P {progress_percent} -a start -PlexUser {username}`- Playback Stop / Watched :
`-m {media_type} -s "{show_name}" -M "{title}" -y "{year}" -t "{thetvdb_id}" -i "{imdb_id}" -S {season_num} -E {episode_num} -P {progress_percent} -a stop -PlexUser {username}`- Playback Pause :
`-m {media_type} -s "{show_name}" -M "{title}" -y "{year}" -t "{thetvdb_id}" -i "{imdb_id}" -S {season_num} -E {episode_num} -P {progress_percent} -a pause -PlexUser {username}`## Usage
```
-setup Setup aplication
-reset Reset settings and revoke token-m Media type (movie, show, episode)
-a Action (start, pause, stop)
-s Name of the TV Series
-M Name of the Moviename
-y Year of the movie/TV Show
-S Season number
-E Episode number
-t TVDB ID
-i IMDB ID
-P Percentage progress (Ex: 10.0)
-PlexUser The Plex username
-refreshToken Refreshes the Trakt token
```## FAQ & Troubleshooting
* [Frequently Asked Questions](TBD)
* [Troubleshooting](TBD)[![Github All Releases](https://img.shields.io/github/downloads/frugglehost/TautulliBatch2Trakt/total.svg)]()
## License
Distributed under the GPL License.## Similar Projects
- https://github.com/JvSomeren/tautulli-watched-sync
- https://github.com/xanderstrike/goplaxt
- https://github.com/gazpachoking/trex
- https://github.com/dabiggm0e/plextrakt
- https://github.com/trakt/Plex-Trakt-Scrobbler
- https://github.com/Generator/tautulli2trakt
- https://github.com/TheGeeKing/TautulliPython2Trakt## Bug Squashers!
* <a href="https://github.com/TheGeeKing">TheGeeKing</a>