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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |