M
M
Messi2017-09-16 13:41:08
css
Messi, 2017-09-16 13:41:08

Am I violating rights?

I want to put a video on the site. Found one on youtube. Question:
1. If I download this video from youtube and install it on my website, do I violate the rights of the video's author?
2. If I go to youtube, turn on the video and record this video on my PC using screen recording, and then post it on the site. Am I violating my rights with this?

Answer the question

In order to leave comments, you need to log in

8 answer(s)
A
Alex-1917, 2019-05-30
@alex-1917

Where is your code?
What attempts were made?
What picture was asked - use such a picture - be careful, just cut off the excess there and go ahead, I post the finished code!

<img src="kortinko.jpg" alt="ya-kortinko" style="width:100%;height:auto">

K
kamisarlapsha, 2019-05-31
@kamisarlapsha

https://jsfiddle.net/djKliter/k3w4xbfs/
When changing the width container, the blocks will not break

M
ma4t, 2019-05-30
@ma4t

If kruglyashi rigidly specified sizes, then please indulge in the absolute.

.block {
  width: 400px;
  height: 200px;
  margin-top: 50px;
  margin-left: 100px;
  position: relative;
  border: 1px solid green;
}

.circle, circle2 {
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid red
}

.circle {
  left: -25px;
  top: -47px;
}

.circle2 {
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
}

<div class='block'>
  <div class='circle'>
  </div>
  <div class='circle2'>
  </div>
</div>

wrap it all in a block and
reduce the circles on the adaptive, and set the paddings on the sides
of the strip to be made consecutive divs, which also have padding: 0 60px on the sides, for example, and a certain border is written (border-top / border-left, etc. )
the text can be wrapped with one div and the parent whose border is set
Needed to write dislplay: flex; align-items:center ( align vertically) and justify-content: flex-end to the right edge so

T
toha_man, 2019-05-30
@toha_man

Pretty easy. The author above answered well for the circles - absolute positioning.
And with stripes it's even easier - look at them as on the border of blocks. even ones have no border on the left (border-left: none)
odd ones (use pseudo class :nth-child(odd and even)) - on the right.
It remains only to remove the borders from the first (: first-child) and last (: last-child) blocks - border: none
And we get an adaptive

E
elepner, 2019-06-01
@elepner

Use https://stackblitz.com/edit/typescript-u6jwzh

D
Danakt Frost, 2017-09-16
@Danakt

1. Yes, if the video is protected by an appropriate license
2. Yes, if the video is protected by an appropriate license
Choose a video with a Creative Commons license. The license is written in the description of the video:
b0bba04556d549fa9fdc367a0c2e108f.png

D
Dimonchik, 2017-09-16
@dimonchik2013

YouTube catches videos (both Yandex and all krupnyaks) on similar graphic content
2) answer yourself - is the pirate screen legal?

A
Alexey Skobkin, 2017-09-16
@skobkin

1. If I download this video from youtube and install it on my website, do I violate the rights of the video's author?

If the video belongs to the author, is not distributed under CC (the version that suits your site) and you have not received permission from the author, then yes, you are violating.
See above.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question