Reply
How to keep people from uploading spam videos?
Old 06-07-2009, 03:32 PM How to keep people from uploading spam videos?
Extreme Talker

Posts: 182
Trades: 0
Well, I don't know if you call it spamming or cramming, but how can you keep people from uploading duplicates of videos or cramming your video web site with bad or questionable videos, or uploading the same video over and over? Any ideas? thanks.
chrisj is offline
Reply With Quote
View Public Profile
 
 
When You Register, These Ads Go Away!
Old 06-09-2009, 06:01 PM Re: How to keep people from uploading spam videos?
willcode4beer's Avatar
Super Moderator

Posts: 1,388
Name: Paul Davis
Location: San Francisco
Trades: 1
probably the easiest way to identify duplicate videos is by creating an MD5 hash for uploaded videos. Compare the hash and file-size to find duplicates.

As for questionable videos...Only way I can think of is through a review process.
__________________
Paul Davis

earn $$$ write for willCode4Beer.com
willcode4beer is offline
Reply With Quote
View Public Profile
 
Old 06-10-2009, 03:36 PM Re: How to keep people from uploading spam videos?
johniman7's Avatar
President, JLI Media

Posts: 961
Name: John Irving
Trades: 0
I think the only way to do it is a review process. The technology isn't really practical to try to have a program look at the videos and determine if they are appropriate or not.
__________________
Cheers, John Irving: My Blog
JLI Media: Social Media Marketing | Website Development (Link Coming Soon!)
johniman7 is offline
Reply With Quote
View Public Profile Visit johniman7's homepage!
 
Old 06-16-2009, 01:43 PM Re: How to keep people from uploading spam videos?
Extreme Talker

Posts: 182
Trades: 0
Can you enlighten on this:
"Creating an MD5 hash for uploaded videos. Compare the hash and file-size to find duplicates"

I'm not familiar with "hash".

Thanks
chrisj is offline
Reply With Quote
View Public Profile
 
Old 06-16-2009, 06:30 PM Re: How to keep people from uploading spam videos?
willcode4beer's Avatar
Super Moderator

Posts: 1,388
Name: Paul Davis
Location: San Francisco
Trades: 1
Most every unix/linux based system has a commandline utility md5sum.
just: md5sum file

Also, just about every language has a library for doing the same.
For example, with java see:
http://java.sun.com/javase/6/docs/ap...ageDigest.html
and
http://java.sun.com/javase/6/docs/ap...putStream.html

with PHP you'd do something like:
Code:
$upload = $_POST['file']; 
$file_hash = md5($upload);
__________________
Paul Davis

earn $$$ write for willCode4Beer.com
willcode4beer is offline
Reply With Quote
View Public Profile
 
Old 06-16-2009, 07:20 PM Re: How to keep people from uploading spam videos?
Decaf's Avatar
Ultra Talker

Posts: 490
Name: Adam
Trades: 0
Quote:
Originally Posted by willcode4beer View Post
Most every unix/linux based system has a commandline utility md5sum.
just: md5sum file

Also, just about every language has a library for doing the same.
For example, with java see:
http://java.sun.com/javase/6/docs/ap...ageDigest.html
and
http://java.sun.com/javase/6/docs/ap...putStream.html

with PHP you'd do something like:
Code:
$upload = $_POST['file']; 
$file_hash = md5($upload);
So, how will you deal with videos that have a titlte sequence before the copied video starts? The md5's will be completely different and your comparison will return that the videos are not the same when they actually are.

Side note: The PHP command to hash files is "md5_file($file_to_hash);". Calling a md5 of $upload will just hash the filename of the video specified.
__________________

Last edited by Decaf; 06-16-2009 at 07:21 PM..
Decaf is offline
Reply With Quote
View Public Profile Visit Decaf's homepage!
 
Old 06-16-2009, 07:22 PM Re: How to keep people from uploading spam videos?
willcode4beer's Avatar
Super Moderator

Posts: 1,388
Name: Paul Davis
Location: San Francisco
Trades: 1
The md5 hash will only work if it's the same file.
For some things, you'll either want voice recognition software feeding text to a search index or, you'll just need to have reviews and reporting.

The later will be easier.
__________________
Paul Davis

earn $$$ write for willCode4Beer.com
willcode4beer is offline
Reply With Quote
View Public Profile
 
Old 06-30-2009, 05:50 PM Re: How to keep people from uploading spam videos?
Extreme Talker

Posts: 182
Trades: 0
I am considering charging a small fee for the first video uploaded by a user. With the theory that a spammer mindset may not want to pay, therefore it automatically seperates the good from the bad.

I'd be interested in feedback on this idea. Thanks.
chrisj is offline
Reply With Quote
View Public Profile
 
Old 07-01-2009, 12:08 AM Re: How to keep people from uploading spam videos?
hairygunther's Avatar
Extreme Talker

Posts: 164
Trades: 0
what about monitoring the usernames etc - the text fields of the members, and filtering out spam that way - most spammers are "professional" spammers, ie spend days spamming tonnes of crap everywhere - thus their presence on your machines is usually large collections of crap with slightly different names but usually all easily linked by some easy "rule" or other. filtering them can be very easy. no need to go all the way into the video itself!

(fee idea will backfire and kill your site - why can't they go to youtube and upload it for free? why pay someone who's infinitely smaller than youtube, when youtube gladly let her/him do it free?)
hairygunther is offline
Reply With Quote
View Public Profile
 
Old 07-01-2009, 05:58 AM Re: How to keep people from uploading spam videos?
Super Talker

Posts: 125
Name: vikas
Trades: 0
monitor the email id and IP address these 2 things are sufficient to block spammer ...
__________________
Free Online Books Collection of free online books and free ebooks |Online pdf Books - Free online pdf books and free pdf eBooks
vikas1234 is offline
Reply With Quote
View Public Profile
 
Old 07-01-2009, 08:48 AM Re: How to keep people from uploading spam videos?
hairygunther's Avatar
Extreme Talker

Posts: 164
Trades: 0
ah, i already gave my view on this one. no need to repeat myself.
hairygunther is offline
Reply With Quote
View Public Profile
 
Old 07-01-2009, 05:15 PM Re: How to keep people from uploading spam videos?
Lashtal's Avatar
PHP Learner

Posts: 492
Name: Lashtal
Trades: 0
Quote:
Originally Posted by chrisj View Post
I am considering charging a small fee for the first video uploaded by a user. With the theory that a spammer mindset may not want to pay, therefore it automatically seperates the good from the bad.

I'd be interested in feedback on this idea. Thanks.
You know, your game plan really depends on what kind of a site you run.

For instance, do you run the kind of site where you can charge users to use your site and not expect them to leave? or, like HairyGunther has suggested, just go to youtube- or any number of sites on the web and do it for free? Would you be chasing away legit people?

I don't think I could provide a sincere answer without knowing much about your site.


so far, I think willcode4beer has suggested about the most feasible answer here so far: as some of these guys can create 100 emails in 5 minutes, and sit on about 500 different IP addresses, if your site is THAT valuable to them, they will continue to find ways to exploit your system every time.

Perhaps hiring a programmer will be in your best interest.
Lashtal is offline
Reply With Quote
View Public Profile
 
Old 07-06-2009, 09:38 AM Re: How to keep people from uploading spam videos?
Experienced Talker

Posts: 30
Name: lisa
Trades: 0
A possibility (if you have the programming inclination and a good server to do the processing required) is to create a video 'fingerprint' when processing an upload (create a strip of pixel thumbnails periodically e.g every 5 or 10 seconds and gather data from this) then use some math to compare against existing fingerprints and flag up videos that match an existing pattern within a certain threshold.
__________________
[B][SIZE="3"][URL="
grass321 is offline
Reply With Quote
View Public Profile
 
Old 07-10-2009, 12:39 AM Re: How to keep people from uploading spam videos?
Lashtal's Avatar
PHP Learner

Posts: 492
Name: Lashtal
Trades: 0
Brilliant!
Lashtal is offline
Reply With Quote
View Public Profile
 
Old 07-10-2009, 12:42 AM Re: How to keep people from uploading spam videos?
Junior Talker

Posts: 1
Name: Andy Wolf
Trades: 0
very gud web & very nice Work...;-)
__________________
Get results in as little as nine days by following our 9 Day Program
isagenix weight lose
BlindMatrix is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to How to keep people from uploading spam videos?
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML

 



Page generated in 0.17384 seconds with 13 queries