It’s true… far right dictators love this shit:
It’s true… far right dictators love this shit:
Apple will make you pay for anything apparently
Well, people have been forking recipes forever. I’m sure we will get closer to that reality eventually
“My food is included in rent. Which is convenient for day-to-day eating but gives me less capacity for cooking my own meals. Like, I admit it, the system works really well for normal people, I’m just a weirdo who likes tinkering with recipes, hosting dinner parties, and whatnot”
There, I highlighted the absurdity even more for you. You’re not a wierdo, you’re a tech-chef.
Something recently broke the client and now it says invalid credentials all the time. I gave up with the client and just downloaded the openvpn files and use those.
Torrenting works…
Sign up to my onlyfans and I’ll hack together a nice Linux client for ProtonVPN and Drive.
I think this is entirely the reason…
So does that mean albums ripped and uploaded to Youtube do result in royalties being paid to the artists?
What about in the case where there are no ads?
Live music isn’t what I’m referring to though, it’s the ripped and uploaded albums
I was under the assumption that Youtube had to pay artists for their music being on there? Is that not what is happening?
And if not, how has Youtube not been cease and desisted/sued into absolute oblivion?
Same!
I think you mean this one
ISPs still have data caps?
That should be outlawed by now.
Dude, you’re asking is there a right time for suicide. You need to reach out and get help. Seriously. Do whatever it takes.
de verdad, tacos, burritos, jennifer lopez
Entonces, sabes cuando tu mente lee dos lineas al mismo tiempo? No tienes esto cuando lees?
You ever read two lines of text at once? Like, your brain just jumps between words too fast? I had to do a double take after reading this headline as:
Cheap, good, black skinned, and reliable Jew.
I wrote a bash script for this, but I’m not sure of the correct settings so I haven’t used it to re-encode my whole library yet.
Here’s my script in case anyone has any tips:
#!/bin/sh
shopt -s globstar
for FILE in */
{
if [[ -d $FILE ]]; then
continue
fi
match="*-re.mp4"
if [[ $FILE == $match ]]; then
echo already encoded, skipping $FILE
continue
fi
match="*-ex.mp4"
if [[ $FILE == $match ]]; then
echo already excluded, skipping $FILE
continue
fi
if [[ $(du "${FILE}" | awk '{print $1}') -lt 10000 ]]; then
#echo $(date),$(pwd)/,$FILE,toosmall >> errors.csv
echo $(date),$(pwd)/,$FILE, 0,0,0,0, original too small >> encoding.csv
continue
fi
if [[ $(mediainfo "${FILE}" | grep -c -e'Audio #') -gt 1 ]]; then
#echo $(date),$(pwd)/,$FILE,skip-audio >> errors.csv
echo $(date),$(pwd)/,$FILE, 0,0,0,0, multiple audio tracks >> encoding.csv
continue
fi
if [[ $(mediainfo "${FILE}" | grep -c -e'Text #') -gt 1 ]]; then
#echo $(date),$(pwd)/,$FILE,skip-subs >> errors.csv
echo $(date),$(pwd)/,$FILE, 0,0,0,0, contains subtitles >> encoding.csv
continue
fi
FULLM=${FILE%.*}
REN="$FULLM-re.mp4"
echo writing $REN
#ffmpeg -y -i "${FILE}" -vcodec libx264 -crf 23 "${REN}"
#ffmpeg -y -i "${FILE}" -vcodec h264_nvenc -crf 23 "${REN}"
ffmpeg -y -i "${FILE}" -vcodec libx265 -crf 23 "${REN}"
ORIGSIZE=$(du "${FILE}" | awk '{print $1}')
NEWSIZE=$(du "${REN}" | awk '{print $1}')
ORIGBITRATE=$(mediainfo "${FILE}" | grep Overall | sed 's/[^0-9]*//g')
NEWBITRATE=$(mediainfo "${REN}" | grep Overall | sed 's/[^0-9]*//g')
echo $FILE vs $REN
echo $ORIGBITRATE vs $NEWBITRATE
#if [[ $NEWBITRATE -gt $ORIGBITRATE ]]; then
#echo new bitrate is too big, renaming $FILE to $FULLM-ex.mp4
#echo $(date),$(pwd)/,$FILE, $ORIGBITRATE, $NEWBITRATE, $ORIGSIZE, $NEWSIZE, bitrate increased >> encoding.csv
#mv "${FILE}" "${FULLM}"-ex.mp4
#rm -f "${REN}"
#continue
#fi
if [[ $ORIGSIZE -lt $NEWSIZE ]]; then
#echo $(date),$(pwd)/,$FILE,sizeToSmall: $ORIGSIZE vs $NEWSIZE >> errors.csv
echo $(date),$(pwd)/,$FILE, $ORIGBITRATE, $NEWBITRATE, $ORIGSIZE, $NEWSIZE, filesize increased >> encoding.csv
echo deleting "${REN}"
rm -f "${REN}"
mv "${FILE}" "${FULLM}"-ex.mp4
else
echo $(date),$(pwd)/,$FILE, $ORIGBITRATE, $NEWBITRATE, $ORIGSIZE, $NEWSIZE, ENCODED >> encoding.csv
rm -f "${FILE}"
fi
}
Unreasonable? Depends on what you consider reasonable. Yes absolutely they would try to exploit the users, in which case we go back to piracy. Perhaps a better solution would be federated content providers with some sort of combined (reasonable) fee determined by the providers collectively. We get one system to subscribe to, and pay one fee.
My utopia would just be a single reasonable paid service that provided everything. I pirate because its simply more convenient than 20 subscriptions.
There should be an app or something for this…