FLV Player - Download HD Quality Flash Video Player. Supports both HTML 5 & Flash player for Web from hdflvplayer.net

Archive

Archive for December, 2010

Use the latest ZEND Framework job search portal script to develop up the latest features

December 8th, 2010 No comments
Job Portal ScriptIt is now time to leave the tedious job of programming to develop job searching website. You do not have to spend thousands of dollars for making your own job search portal. Contus is introducing a new product which is ready to use to make your own job portal called Job Portal Script. This script with ready to use features which will help you to cut off your budget and time. This script is built in ZEND Framework.

Following are features of Job portal script which will help you to develop your job search portal in no time.

General Features :
  • This is the only script which is developed in ZEND Framework which gives very high level of security with high quality of performance.
  • This script gives navigational schemes which is very easy to use and user interface which is very attractive.
  • This script comes with Web 2.0 Design which is very easy to use. Fonts are easy to read and colors are very bright.
  • This Script is SEO friendly.
  • This script is built with features of all leading job sites.
  • It supports large number of data flawlessly.
  • Contus gives you 100% source code without any encryption.
Front End Features of job portal script
  • Job portal script has search functionality. You can do search based on keywords. It also has advance search functionality.
  • You can also do search based on job description. You can also do location based search.
  • Job portal script gives space for advertisement for featured employers.
  • You can also do browsing by the categories of jobs.
  • Job portal script also give you space for forum, discussion board, career advice and new block.
  • It has integrated blog system of Word Press.
Features for job seekers
  • It has easy registration process with email verification and validation process.
  • It has excellent and advanced function of job searching.
  • It has inbuilt Google map for easy navigation of location.
  • It has control panel to manage job seekers profile.
  • Job portal script allows job seekers to upload their resumes in MS-Word format.
  • It saves search options.
  • Job seekers can easily apply for job with the help of saved search.
  • It allows jobseekers to control their personal details.
  • Jobseekers can apply for interested job directly from search result page only in just two clicks.
  • Jobseekers can add their social network link.
Features for Employer
  • Easy registration processes for employers same like job seekers.
  • It comes with control panel for employer to post and manage application and resumes.
  • It allows employer to create multiple users with single login.
  • It allows communication between job seekers and employer via emails.
  • It allows employee to schedule interview, candidate gender, qualifications, career level etc.
Features for Administrator
  • It allows admin to control users’ profiles.
  • It also allows controlling payment gateway.
  • Give facility of dashboard to view all new users, messages, alerts in single page.

Installing HD FLV Player -Standalone

December 5th, 2010 No comments
1. Extract the downloaded zip- file to your local directory.
2. Open hd-flv-player (demo).
3. Run the index file in a browser.
4.You can see the video plays on your browser through HD FLV Player

Configuring HD FLV Player through config.xml

December 4th, 2010 No comments

1. Configuring Options in HdFlvPlayer through config.xml

2. You will be able to find the following variables – which helps you to configure the player.

Configuring HD FLV Player through flashvars

December 3rd, 2010 No comments
1. Open index.html in your favourite editor.
2. You will be able to find the following code snippet.
<div name=’mediaspace’ id=’mediaspace’>
<script type=”text/javascript”>
var s1 = new SWFObject(‘hdflvplayer/hdplayer.swf’, ‘player’, ’640′, ’360′, ’9′);
s1.addParam(‘allowfullscreen’, ‘true’);
s1.addParam(‘allowscriptaccess’, ‘always’);
s1.addParam(‘wmode’, ‘transparent’);
s1.write(‘mediaspace’);
</script>

3. Add the below line next to s1.addParam(‘wmode’, ‘transparent’);

s1.addVariable(‘variable’, ‘value’);

Example: To pass the video file through flashvars,

<div name=’mediaspace’ id=’mediaspace’>

<script type=”text/javascript”>

var s1 = new SWFObject (‘hdflvplayer/hdplayer.swf’, ‘player’, ’640′, ’360′, ’9′);

s1.addParam(‘allowfullscreen’, ‘true’);

s1.addParam(‘allowfullscriptaccess’, ‘always’);

s1.addParam(‘wmode’, ‘transparent’);

s1.addVariable(‘file’, ‘your video file path goes here’);

s1.addVariable(‘hdpath’, ‘your hd file path goes here’);

s1.addVariable(‘preview’, ‘yourPreview image path goes here’);

..etc

s1.write(‘mediaspace’);

</script>