Comment by Manuel_D
3 days ago
The argument is that it doesn't create another copy, so it's more analogous to receiving a broadcast. Like, if a pirate radio station plays copyrighted music, then the mere act of receiving those signals isn't a copyright violation. But recording that broadcast would be.
> But recording that broadcast would be.
Is this seriously true in the US? I doubt this is the case in any European jurisdiction.
Recording radio and TV is legal in any other case (the relevant companies didn't want that to be the case either, but we hadn't yet fallen far enough down the hole yet for that possibility to disappear).
To make another comparison:
You record House on your Tivo = Legal (you now have a file you can play anywhere (barring DRM, but libre DVRs exist), you've copied it)
You 'record' House on Netflix (either literally with OBS or just capturing the video stream via some other means) = Illegal
The only difference is the source. The actual video stream could be functionally identical. There's the fact that actual TV and radio isn't on-demand, but that to me is just an implementation detail, and not an inherent reason to treat them differently (then again, I'm not deep into the mindset of defending copyright).
Bear in mind that "illegal broadcast" is important here. A pirate radio station does not have a license to play the music it's playing. If recording pirate broadcast is legal, then effectively all copyright laws are moot so long as the copyrighted material is transmitted over radio.
Tivo is legal because cable providers are legally transmitting their cable programming.
Things get different on Netflix because recording Netflix requires circumvention of DRM, which is its own can of worms.
> If recording pirate broadcast is legal, then effectively all copyright laws are moot so long as the copyrighted material is transmitted over radio.
My understanding is that this is in fact the case, since the relevant laws don't even touch the listening side of radio/TV (modulo jurisdiction).
It's like buying a pirated DVD from a random shop. It's illegal to run a shop selling pirated films, but is it illegal to buy their DVDs? If there is a law for that, there's probably a 'knowingly' in there too.
the thing is its not like a radio or TV broadcast. some countries consider open broadcast to be public domain so once its broadcast its public, you just cant sell it like its yours.
when a server downloads data to you, the server is creating a copy on your hardware right out of the gate.
a stream is a download. a central server, is pushing bits into your hardware, and making a copy on your hardware.
restricting any copying at all means your hardware cant use what you were legally given, because by a split hair definition, the bits are being copied when they move from memory address to register address vice versa.
appending header and footer to a data structure is not copying the data.
the real problem unilaterally, is when you are not a legal distributor, and you provide a copy to someone else. [dont do that]
> some countries consider open broadcast to be public domain so once its broadcast its public
I can still legally record cable TV (or is that also illegal in the US?), even though I probably need to pay a lot more for it than I would for both Netflix and open broadcasts.
> when a server downloads data to you,
*Uploads.
> the server is creating a copy on your hardware right out of the gate.
As opposed to what?
> a stream is a download. a central server, is pushing bits into your hardware, and making a copy on your hardware.
The same way a TV broadcast is (barring implementation details). What's the difference between me displaying that data instantly and it then going to /dev/null, and me sending that to copy.mkv? I can do the latter legally with TV, why not everything else?
tv-stream.ts > /dev/dri/card0 = Legal
tv-Stream.ts > copy.mkv = Legal
netflix-stream.ts > /dev/dri/card0 = Legal
netflix-stream.ts > copy.mkv = Illegal (why?)
> restricting any copying at all means your hardware cant use what you were legally given, because by a split hair definition, the bits are being copied when they move from memory address to register address vice versa.
Yes.
> the real problem unilaterally, is when you are not a legal distributor, and you provide a copy to someone else.
Obviously. But I'm not doing that when recording TV, radio, Netflix, a blu-ray, your mum, you name it. I'm only making a copy for myself. Yet it's legal in some cases but not in others, just because the implementation is different.