Archive

Posts Tagged ‘the videos’

Need Video Upload Script

January 3rd, 2012 Comments off

I have a folder on my desktop with some videos. I need a script/software that will take the videos, insert each one into its own webpage template in a specified location, and then upload those pages to a specified folder on my server/hosting. Then I need a list of all the url’s where the videos reside.

So if there are 100 videos, when the script/software is done running I will have 100 individual pages each containing one video, the videos will be uploaded to my server using ftp, and then I’l…

Video Data

February 19th, 2010 Comments off

I am looking to populate my new PHP motion website.

I would like to capture all the videos off of www. b.r.o.a.d.b.a.n.d.sports.com (remove the “.” to see the domain)

the videos will need to be captured and put into an FTP file. I am not sure the exact details but I will be using a tool called MASS FTP UPLOADER from PHPmOtion.com. I will need you to figure out what format etc. will work with this tool.

I want to capture all the videos if possible

Clone Site Needed

September 6th, 2009 Comments off

Project description.

I want a site that is very similar to this site: vladtv.com or worldstarhiphop.com
Things I would like included:
-Videos to be added (But NOT hosted on my site. Videos taken from other video sources like youtube.com) i think these sites use videoswiper
-Some sort of list for the videos on the front page
-Big image/header to put at the top.
-Header at the top with links, and a search field.
-Be able to search for videos.
-Custom video interface(For example: http://www.worldstarhiphop.com/videos/video.php?v=wshh4r1M2O4wHK9rRcPj *You can see on the video player it says WSHH with a logo and all*)
-Each video page can have: Description of video, video date added, video views, video code that includes the url, embed code, and auto play code. Also be able to add comments for the video.
It looks like the site doesn’t actually upload the videos to their host, they actually just use videos from youtube, google, etc. and just has their own video interface for the player. If you go here: http://www.worldstarhiphop.com/videos/contacts.php it actually tells you it doesn’t:

Modification To Joomla Module

August 19th, 2009 Comments off

This is for additions to a module for our video component: JomTube

1) Currently, the module will allow videos to be displayed as Random, Latest, Most Highly Rated, Featured and Most-Viewed. The problem is that the module takes the videos out of all of them. I would like to be able to enter a category-ID and use these display options… as well as displaying a single video set by video-ID.

2) The second part of this job consists of showing a random video based on the videos’ tags best matching the content pages’ meta tags. If there are no matches, then a “default” video will show.

3)The module should have the ability for the video to play within the modules like the Qtube module (mod_qtube) for which I will provide the code for review. Presently, the jomtube module only shows link to the videos within the component. (We already have the code for the player.)

Creat 2 Youtube Vids

August 15th, 2009 Comments off

I have 350 to 500 Word Articles that I want to turn into videos. The videos should be between 1 minute and 3 minutes.

Here are the requirements:
1. The videos must include a voiceover with slides or images or a live person recording yourself. Preferential treatment will be given to native English Speakers.

It is most important that the information is communicated and there is a clear call to action. Note: I will give you the call to action.

Please include the following code in your bid: df32

Also, please provide a brief summary of how you plan to shoot the videos and an example of your work or a link to a video concept that you will replicate.

Here are some examples of possible styles -
1. Film yourself speaking the article in conversational speak.
2. Showing images with a voiceover.
3. Slideshow with key points from articles written on the images with voiceover.

It’s your choice. Feel free to be creative.

Crawl Videos +add Them To Site

August 10th, 2009 Comments off

I need someone to create a desktop application which can automatically pull the embed code from all the new videos on pornhub, xvideos and xtube and post them to my website. It would make sense if it ran an update every 5 minutes or so and posted all the videos to my website. I need this to be automatic so aslong as the application is running it will pull the video, title, tags, and description and then add them to mine. I dont need it to download the videos just yet, but just embed them.

Like I said earlier I want it to pull the latest videos added to these websites.

I would like if the application could generate new tags from the title, and possible spin the title around a bit. (let me know if this is practicle)

This shouldnt be a hard project at all to complete.

I am using Adult video script which can be seen at www.adultvideoscript.com

I would like if the application used different user accounts to post the videos. Not a new account for every video but say for every 100 videos.

Porn Video Search Engine

June 21st, 2009 Comments off

I want to built a custom porn video search engine.this site should search the videos from top 10 porn tube sites. after searching the videos should also play in the site itself. also should provide the videos to download via a download button below each video.other features like rating ,views, user accounts, forum & spaces throughout the website for advertisements. the index page should contain the latest uploaded videos from those 10 porn sites and also the videos should be categorised by most viewed, highest rated, a search bar to search the whole directory etc…

10porntube sites are:-
pornhub.com
redtube.com
youporn.com
xvideos.com
shufuni.com
megaporn.com
pornotube.com
spankwire.com
keezmovies.com
24desi.com

The site also needs the urls to be search engine friendly and the site SEO, am looking for a quick turnaround on this & a high quality product.

WordPress Custom Field Query

June 20th, 2009 Comments off

I’m building a WordPress site and I need some help getting a query to work correctly.

I’m trying to use wp_query with a custom field tag from the plugin Flutter ( see documentation here http://www.scribd.com/doc/8790279/Flutter-Documentation). Let me tell you
what I am trying to achieve and what I am doing.

I’m building a client site which has VIDEOS and QUOTES from their own
customers. I set up two custom write panels one for each (videos and
quotes). Each write panel has some of the same information. I built a
custom field with the radio buttons that lists all of their clients.
That way they can add a new video or quote and just check off the
client group this belongs to. Everything is working just how I want on
the two separate categories. The problem is I have a page where I want
both the videos and the quotes to show up for EACH SEPARATE CLIENT. So
a page for each client. So, I’m trying to use wp_query to pull in
POSTS OUTSIDE THE LOOP by querying my custom field “companyname”. It needs to query posts only from the client in the current post.

So for example I have three clients. Client A, Client B and Client C. Each client has 6 videos and a quotes pages. The videos are all under the category video, and all clients are tagged with their client name. So If I am on the Client B quote page I only want the videos from Client B to show up.

<?php
$recentPosts = new WP_Query();
$recentPosts->query($query_string.’x_companyname=true’);
?>
<?php while ($recentPosts->have_posts()) : $recentPosts->the_post(); ?

<li><a href=”<?php the_permalink() ?>” rel=”bookmark”><?php the_title
(); ?></a>
<p><? echo get(‘videoquote’); ?></p>
</li>
<?php endwhile; ?>

Porn Video Search Engine

June 19th, 2009 Comments off

i wanna have build a custom porn video search engine.this site shld search the videos from top 10 porn tube sites.after searching the videos should also play in the site itself.also shld provide the videos to download via a download button below each video.other features like rating ,views etc shld be der.the index page shld contain the latest uploaded videos from those 10 porn sites

10porntube sites are:-
pornhub.com
redtube.com
youporn.com
xvideos.com
shufuni.com
megaporn.com
pornotube.com
spankwire.com
keezmovies.com
24desi.com
also there shld be a box if any users enters the url of videos frm des sites shld provide the download link of the video.

Blog Video Intro For Youtube

May 29th, 2009 Comments off

I want some videos for a blog at http://www.theiphonetips.com
The videos needed are:
1. Intro video (Before video)
2. End video (At the end of the video)
3. A strip design and animation for displaying text on videos (in and out animation of 1.5seg and static middle for 10segs)
4.Other strip for video title at the beggining of videos (The title strip may be included on video intro)

Specifications and requirements:
1. The art of the video and strip have to match the web site design
2. The logo of the web site should be used in the videos and strips.
3. A slogan for video will be provided.
4. Logo file in paths will be provided.
5. The intro video must include a picture of the blog editor.
6. The intro video must have 8seg of lenght and final video 3-4segs.
7. You have to propose music or sound ideas for the video, which will also be provided.
8. You have to include sound effects, and animation for all the video elements.
9. The video can be made in Flash or After Effects.
10. The video format delivered must be .avi without compression and Audio: mp3 224 Kbps, 44,100 Hz, V

Find 5 Videos Copyright Free

May 8th, 2009 Comments off

Hi,

This is a perfect project for someone who start here and
want a 10/10 feedback in few hours!

I need 5 videos about fitness and abs training with no sound.
This 5 videos need to be copyright free with no ads on it…

Example:
You find a video about abs training where someone show
how to do abs exercices but the video have no ads, no link appear,
no sound and are the video is copyright free i will pay 5$ each.

Requirements:
- Fitness and Abs related video in uploadable format like mpg
- The videos need to have no advertising, product… Exercices only!
- The videos need to be copyright free and not presently on Youtube
- The videos need to have no sound, no voice.. I don’t care if
someone speak and we not hear him, i will add voice over the video!

If you visit this page and have videos like i want, i can pay
5$ each to have it send me a PM. (I will open another project for your videos)

Ready to fund escrow and release after i watch the video and see the video respect ALL the requirments.

Thanks

Youtube Video Advertisers

May 6th, 2009 Comments off

1. Download .rar (zipped) files which I link you too
*must know how to unzip/unrar files no time to explain this

2. Rename the videos before uploading to any random name
*a name such as “ssdf23523.avi” is fine.

4. Create youtube accounts (will give list of additional viral sites as well)
I need 25 accounts in youtube to be opened using Gmail an IP address rotator to not have account deleted. Accounts should be min. 1 month old. Account names should not be too cryptic to not look as spam. You will send me an excel list with username and password for youtube and also for gmail account.

So all you have to do is create new youtube accounts, rename the videos randomly, upload the videos which i provide you and copy paste the title/description/tags fields

You should know about IP changing and email creation.

Experience a must. Fast connection a must.
I won’t be explaining how to do this. You should know how if you bid

best bid for 1000 videos wins.
Total size of 1000 videos is 9500mb.
So that means the average video is 9mb in size.
Videos are sexy but not nude

We will give you a list of viral sites where we would want each video posted on, we have 10 to start. Must be able to show progress reports in excel so we can verify work. Videos should get at least 10,000 views in 14 day period (avg is 35k)

This is long term assignment..and please only experience people that have done this before

Need someone AS SOON AS POSSIBLE~!

I will only deal with reputable providers who have experience.
Please specify REAL delivery time and describe what experience you have in BULK VIDEO ADVERTISING. Please dont discuss anything but that. Include the word show-time in your bid..

Video Submission Php Curl

April 29th, 2009 Comments off

Hi,

I need a video submission script using cURL and mysql,

- Submit a video to 5 different video sites (I’ll give you the list)
- Save the accounts to use them on each submission (I’ll create the accounts previously)
- Use multithreating
- Ability to add a proxies list
- Save projects
- get stats from videos sent
- Confirm submission(s)
- Store links of videos and rss feeds urls from video sites, should be able to export them in csv

Process:

step 1: we upload the video(s) to a Project
step 2: we select the sites to submit the video(s)
step 3: we add descriptions, titles, urls…
step 4: we submit the videos or we SCHEDULE them for other times (CRON)
step 5: We send the videos and get stats, confirmations, stats would be good too (numbers of views)
step 6: we can click on each link to see the videos on their source & verify them if we want to.
step 7: we can export a list of all the submission to an csv file…sorted by ALL, by date, by video site…

Note: we are going to create accounts on each site every day we want to store them on the script (mysql) an be able to see which accounts submited what, when and where…

That’s all so far,

Happy bidding :0)

J.

Website Video Downloader/scrap

March 16th, 2009 No comments

Hello, the project is to download videos from a website that I am a member in, (it cost something every month to have access to the videos section). What I want to do is to download the videos there, anytime there’s a new video I’d just download it manually.
The videos are not downloadable, all we see is the video screen without any button to download, a bit like youtube.

So what I need is a program or maybe a video downloader like the youtube downloader where I could enter URL and it downloads the video? Anyways you know more about that than I do.

Here is a screen shot to show how look the videos to download :
https://www.scriptlance.com/f/?123654209231889802
Thanks

Youtube Video Advertisers

March 16th, 2009 No comments

1. Download .rar (zipped) files which I link you too
*must know how to unzip/unrar files no time to explain this

2. Rename the videos before uploading to any random name
*a name such as “ssdf23523.avi” is fine.

4. Create youtube accounts (will give list of additional viral sites as well)
I need 25 accounts in youtube to be opened using Gmail an IP address rotator to not have account deleted. Accounts should be min. 1 month old. Account names should not be too cryptic to not look as spam. You will send me an excel list with username and password for youtube and also for gmail account.

So all you have to do is create new youtube accounts, rename the videos randomly, upload the videos which i provide you and copy paste the title/description/tags fields

You should know about IP changing and email creation.

Experience a must. Fast connection a must.
I won’t be explaining how to do this. You should know how if you bid

best bid for 1000 videos wins.
Total size of 1000 videos is 9500mb.
So that means the average video is 9mb in size.
Videos are sexy but not nude or in anyway Porn.

Need someone AS SOON AS POSSIBLE~!

I will only deal with reputable providers who have experience.
Please specify REAL delivery time and describe what experience you have in BULK VIDEO ADVERTISING. Please dont discuss anything but that. Include the word show-time in your bid..

Bear