Skip to content

Instantly share code, notes, and snippets.

Privacy Policy

Introduction

Our privacy policy will help you understand what information we collect at Sorties Musiques, how Sorties Musiques uses it, and what choices you have. Sorties Musiques built the Sorties Musiques app as a free app. This SERVICE is provided by Sorties Musiques at no cost and is intended for use as is. If you choose to use our Service, then you agree to the collection and use of information in relation with this policy. The Personal Information that we collect are used for providing and improving the Service. We will not use or share your information with anyone except as described in this Privacy Policy.
The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible in our website, unless otherwise defined in this Privacy Policy.

Information Collection and Use

@davidpcrd
davidpcrd / sonarr_extract_subs.sh
Created July 7, 2023 21:09
Extract "ass" sub from newly download on sonarr for plex
#!/bin/bash
if [ "$sonarr_eventtype" = "Test" ]; then
exit 0
fi
echo "" > "/volume1/homes/david/log.txt"
echo "$sonarr_episodefile_path" >> "/volume1/homes/david/log.txt"
json=$(/volume1/@appstore/ffmpeg6/bin/ffprobe -v quiet -print_format json -show_streams -select_streams s "$sonarr_episodefile_path")
@davidpcrd
davidpcrd / ClipToImgFile.java
Created January 15, 2020 17:11
Quick java file to get clip and export to file
import java.awt.HeadlessException;
import java.awt.Toolkit;
import java.awt.datatransfer.DataFlavor;
import java.awt.datatransfer.UnsupportedFlavorException;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.ArrayList;
import javax.imageio.ImageIO;