Discuss Scratch

79brue
Scratcher
24 posts

Can you allow videos...

Cyoce wrote:

No support.
As has been said before, Scratch is not YouTube.
Think of how much of a pain moderating would be. You could hide an inappropriate image in the end of the video, and the ST would have to watch through the whole thing if the project was reported.
Also, please do not substitute punctuation marks (in this case, “?”) with an ellipsis (…), especially in the title of a post.
<[Scratch] = [YouTube]>// will report false
(I mean that)// = 0
I don't mean that -
As you know, I don't want videos to be project; I want to insert videos to project!
ChocolatePi
Scratcher
1000+ posts

Can you allow videos...

79brue wrote:

Cyoce wrote:

No support.
As has been said before, Scratch is not YouTube.
Think of how much of a pain moderating would be. You could hide an inappropriate image in the end of the video, and the ST would have to watch through the whole thing if the project was reported.
Also, please do not substitute punctuation marks (in this case, “?”) with an ellipsis (…), especially in the title of a post.
<[Scratch] = [YouTube]>// will report false
(I mean that)// = 0
I don't mean that -
As you know, I don't want videos to be project; I want to insert videos to project!
It wouldn't work. Scratch is still not youtube.
MegaApuTurkUltra
Scratcher
1000+ posts

Can you allow videos...

Cyoce wrote:

No support.
As has been said before, Scratch is not YouTube.
Think of how much of a pain moderating would be. You could hide an inappropriate image in the end of the video, and the ST would have to watch through the whole thing if the project was reported.
Also, please do not substitute punctuation marks (in this case, “?”) with an ellipsis (…), especially in the title of a post.
<[Scratch] = [YouTube]>// will report false
Exactly. No support
VoltageGames
Scratcher
1000+ posts

Can you allow videos...

No support. How would this be useful?
Cyoce
Scratcher
500+ posts

Can you allow videos...

79brue wrote:

Cyoce wrote:

No support.
As has been said before, Scratch is not YouTube.
Think of how much of a pain moderating would be. You could hide an inappropriate image in the end of the video, and the ST would have to watch through the whole thing if the project was reported.
Also, please do not substitute punctuation marks (in this case, “?”) with an ellipsis (…), especially in the title of a post.
<[Scratch] = [YouTube]>// will report false
(I mean that)// = 0
I don't mean that -
As you know, I don't want videos to be project; I want to insert videos to project!
Which will make it even harder! Then you could hide inappropriate content at the end of one out many videos in the project and the ST would have to sift through them all if it gets reported! If you want a video, use moving costumes or make an animation.
79brue
Scratcher
24 posts

Can you allow videos...

Last edited by 79brue (Dec. 25, 2014 08:08:14)

Eva12346789
Scratcher
17 posts

Can you allow videos...

What would make it safer? The Scratch Team will add videos for you to pick.
The_Scratch_Squad
Scratcher
1000+ posts

Can you allow videos...

lovescratch973 wrote:

Superdoggy wrote:

nimrocco wrote:

Scratch is not YouTube
This.
Preferably without the caps included in the original post.
This.

Why is everyone posting <<This>>?????????
The_Scratch_Squad
Scratcher
1000+ posts

Can you allow videos...

79brue wrote:

Cyoce wrote:

No support.
As has been said before, Scratch is not YouTube.
Think of how much of a pain moderating would be. You could hide an inappropriate image in the end of the video, and the ST would have to watch through the whole thing if the project was reported.
Also, please do not substitute punctuation marks (in this case, “?”) with an ellipsis (…), especially in the title of a post.
<[Scratch] = [YouTube]>// will report false
(I mean that)// = 0
I don't mean that -
As you know, I don't want videos to be project; I want to insert videos to project!

As with that part:
…I want to insert videos to project!
That is a 0% percent support, what if it leads to an inappropriate video. And besides, high risks.

Edit: Change that to semi support… There are many risks to it… Could you give me potential pros to this suggestion…

Last edited by The_Scratch_Squad (Dec. 26, 2014 12:31:39)

LoveMinecraftSupers
Scratcher
100+ posts

Can you allow videos...

say [no way.] for (2) secs

when [A<[Omg] = [ shyu]>] key pressed


Uhh….
kateskipper
Scratcher
100+ posts

Can you allow videos...

Has been suggested many times.
peekpeekw
Scratcher
10 posts

Can you allow videos...

You should be able to post, but there should be a length restriction. Say, 15 seconds long.
The_Scratch_Squad
Scratcher
1000+ posts

Can you allow videos...

peekpeekw wrote:

You should be able to post, but there should be a length restriction. Say, 15 seconds long.

I agree…
Maybe people new to scratch could not post any vids?
MegaApuTurkUltra
Scratcher
1000+ posts

Can you allow videos...

I'd like to point out that you can actually emulate videos in scratch.
 
ffmpeg -i "yourvid.avi" "sound.mp3"
ffmpeg -i "yourvid.avi" -r 20 -f image2 "frame%03d.png"
=> import that all into Scratch
when green flag clicked
reset timer
play sound [sound v]
repeat until <(timer) > (length of your vid in secs)>
update
end

define update // no refresh
set [num v] to ((timer)*(20))
repeat until <(length of (num))=(3)>
set [num v] to (join(0)(num))
end
switch costume to (join[frame](num))
If you understand what I'm talking about then most likely you know not to abuse this.
Sonickyle
Scratcher
1000+ posts

Can you allow videos...

MegaApuTurkUltra wrote:

ffmpeg -i "yourvid.avi" "sound.mp3"
ffmpeg -i "yourvid.avi" -r 20 -f image2 "frame%03d.png"
If you understand what I'm talking about then most likely you know not to abuse this.
I'm assuming that these commands dump a bunch of .png files into your current directory?
MegaApuTurkUltra
Scratcher
1000+ posts

Can you allow videos...

Sonickyle wrote:

MegaApuTurkUltra wrote:

ffmpeg -i "yourvid.avi" "sound.mp3"
ffmpeg -i "yourvid.avi" -r 20 -f image2 "frame%03d.png"
If you understand what I'm talking about then most likely you know not to abuse this.
I'm assuming that these commands dump a bunch of .png files into your current directory?
Yeah, and an mp3
Sonickyle
Scratcher
1000+ posts

Can you allow videos...

MegaApuTurkUltra wrote:

Sonickyle wrote:

MegaApuTurkUltra wrote:

ffmpeg -i "yourvid.avi" "sound.mp3"
ffmpeg -i "yourvid.avi" -r 20 -f image2 "frame%03d.png"
If you understand what I'm talking about then most likely you know not to abuse this.
I'm assuming that these commands dump a bunch of .png files into your current directory?
Yeah, and an mp3
Cool.
Is there a way to make the files output at 480x360 to save disk space? Would I have to make the source file that resolution first?
Davidstudio
Scratcher
100+ posts

Can you allow videos...

when green flag clicked
move (away slowly) steps
set [slowly v] to [run ]
Superdoggy
Scratcher
1000+ posts

Can you allow videos...

MegaApuTurkUltra wrote:

I'd like to point out that you can actually emulate videos in scratch.
 
ffmpeg -i "yourvid.avi" "sound.mp3"
ffmpeg -i "yourvid.avi" -r 20 -f image2 "frame%03d.png"
=> import that all into Scratch
when green flag clicked
reset timer
play sound [sound v]
repeat until <(timer) > (length of your vid in secs)>
update
end

define update // no refresh
set [num v] to ((timer)*(20))
repeat until <(length of (num))=(3)>
set [num v] to (join(0)(num))
end
switch costume to (join[frame](num))
If you understand what I'm talking about then most likely you know not to abuse this.
Cool! Now I'm not interested in importing videos in Scratch, but is there also an easy way to save Scratch projects as videos / movies?

Sorry slightly off-topic…
MegaApuTurkUltra
Scratcher
1000+ posts

Can you allow videos...

Sonickyle wrote:

Is there a way to make the files output at 480x360 to save disk space? Would I have to make the source file that resolution first?
Add the option
-vf scale=480x360

Superdoggy wrote:

Cool! Now I'm not interested in importing videos in Scratch, but is there also an easy way to save Scratch projects as videos / movies?
Try screen recording.

Powered by DjangoBB