GetACoder.com

 
 

Home | My Account | Post Job | Browse Jobs | RSS Feeds | Careers New!

 

Server Side Playlist

 
 
     
Job Summary:
 
Job Type: Project
Budget: $ 20-100
Required Skills: ASP, ASP .NET, Javascript, Programming, Visual Basic .Net
Attached Files: (None)
 
Status: Closed for bidding
 
Buyer Summary:
 
Username:
wgonmanager  
Feedback Score: 10.00/1010.00/1010.00/1010.00/1010.00/1010.00/1010.00/1010.00/1010.00/1010.00/10 3 reviews
Award Reliability: 4 posted 3 paid
 
Location: Colorado Springs, Colorado, United States
Member Since: April 26, 2006
 
Invited Users: There are no invited users


Description
I need a windows media services server side playlist editor that exports files in ASX abd wsx files. Must be programable or timed to the minute. Windows media server as video and audio files. I must have the ability to program or time shows for a 24 hour period.


Additional information: Submitted on 06/08/2009 at 0:20 EDT

Visual Basic .NET Example

Imports interop_msxml
Imports Microsoft.WindowsMediaServices.Interop

Private Sub Create()

Dim Server As WMSServer
Dim Playlist As IXMLDOMDocument
Dim ElementSmil As IXMLDOMElement
Dim ElementMedia As IXMLDOMElement
Dim ProcInst As IXMLDOMNode
Dim Root As IXMLDOMNode
Dim Node As IXMLDOMNode

Try
' Create new server and playlist objects.
Server = New WMSServer()
Playlist = Server.CreatePlaylist

' Create the processing instruction node.
ProcInst = Playlist.createNode( _
DOMNodeType.NODE_PROCESSING_INSTRUCTION, _
"wsx", _
"")

' Add the processing instruction to the playlist.
Playlist.appendChild(ProcInst)
ProcInst.text = "version = '1.0'"

' Create and add the root node of the playlist.
ElementSmil = Playlist.createElement("smil")
Root = Playlist.appendChild(ElementSmil)

' Create a media element and assign a src attribute to it.
ElementMedia = Playlist.createElement("media")
ElementMedia.setAttribute("src", "c:\wmpub\wmroot\movie.wmv")

' Add the media element to the root node.
Node = Root.appendChild(ElementMedia)

' Save the playlist.
Playlist.save("c:\wmpub\wmroot\playlist_test_create.wsx")

Catch Err As Exception
' TODO: Exception handler goes here.

Finally
' TODO: Clean-up code goes here.
End Try

End Sub
C# Example

using Microsoft.WindowsMediaServices.Interop;
using interop_msxml;

try
{
// Declare the playlist, element, and node variables.
IXMLDOMDocument playlist;
IXMLDOMElement element_smil, element_media;
IXMLDOMNode proc_inst, root, node;

// Create new server and playlist objects.
WMSServer server = new WMSServerClass();
playlist = (IXMLDOMDocument)server.CreatePlaylist();

// Create the processing instruction node.
proc_inst = playlist.createNode(DOMNodeType.
NODE_PROCESSING_INSTRUCTION,
"wsx",
"");

// Add the processing instruction to the file structure.
playlist.appendChild(proc_inst);
proc_inst.text = "version = 1.0";

// Create and add the root node of the playlist.
element_smil = playlist.createElement("smil");
root = playlist.appendChild(element_smil);

// Create a media element and assign a src attribute to it.
element_media = playlist.createElement("media");
element_media.setAttribute("src", "c:\wmpub\wmroot\moview.wmv");

// Add the media element to the root node.
node = root.appendChild(element_media);

// Save the playlist.
playlist.save("c:\wmpub\wmroot\playlist_test.create.wsx");
}

catch(Exception)
{
// TODO: Exception handler goes here.
}

finally
{
// TODO: Clean-up code goes here.
}
C++ Example

// Include header files.
#include
#include "wmsserver.h"
#include "atlbase.h" // Includes CComBSTR and CComVariant.

// Declare variables and interfaces.
IWMSServer *pServer;
IXMLDOMDocument *pPlaylist;
IXMLDOMElement *pElement_Smil, *pElement_Media;
IXMLDOMNode *pProc_Inst, *pRoot, *pNode;
CComBSTR bstrName, bstrNamespaceURI, bstrVersion;
CComVariant varPath;
HRESULT hr;

// Initialize the COM library and retrieve a pointer
// to an IWMSServer interface.
hr = CoInitialize(NULL);
if (FAILED(hr))goto EXIT;

hr = CoCreateInstance(CLSID_WMSServer,
NULL,
CLSCTX_ALL,
IID_IWMSServer,
(void **)&pServer);
if (FAILED(hr))goto EXIT;

// Create the playlist object.
hr = pServer->CreatePlaylist(&pPlaylist);
if (FAILED(hr))goto EXIT;

// Create the processing instruction node.
bstrName = "wsx";
bstrNamespaceURI = "";
hr = pPlaylist->createNode((CComVariant)NODE_PROCESSING_INSTRUCTION,
bstrName,
bstrNamespaceURI,
&pProc_Inst);
if (FAILED(hr))goto EXIT;

// Add the processing instruction to the file structure.
hr = pPlaylist->appendChild(pProc_Inst, NULL);
if (FAILED(hr))goto EXIT;

bstrVersion = "version = 1.0";
pProc_Inst->put_text(bstrVersion);

// Create and add the root node of the playlist.
bstrName = "smil";
hr = pPlaylist->createElement(bstrName, &pElement_Smil);
if (FAILED(hr))goto EXIT;

hr = pPlaylist->appendChild(pElement_Smil, &pRoot);
if (FAILED(hr))goto EXIT;

// Create a media element and add a src attribute.
bstrName = "media";
hr = pPlaylist->createElement(bstrName, &pElement_Media);
if (FAILED(hr))goto EXIT;

bstrName = "src";
varPath = "c:\wmput\wmroot\moview.wmv";
hr = pElement_Media->setAttribute(bstrName, varPath);
if (FAILED(hr))goto EXIT;

// Add the media element to the root node.
hr = pRoot->appendChild(pElement_Media, &pNode);
if (FAILED(hr))goto EXIT;

// Save the playlist.
varPath = "c:\wmpub\wmroot\playlist_test_create.wsx";
hr = pPlaylist->save(varPath);
if (FAILED(hr))goto EXIT;

EXIT:
// TODO: Release temporary objects and uninitialize COM.
The preceding examples create the following playlist.









Reminder
You may not start working in this and any request before your bid is accepted. Users who violate this policy may have their accounts permanently suspended.



 Bids Received (4)   Shortlist (0)   Declined Bids (0)   
Average bid amount:   $88.75   Average delivery time:   6 Day(s)
Place Bid | Post Similar Job | Send Request | Contact wgonmanager

Order by:

 

Remember that contacting the other party outside the site (by email, phone, etc.) on all business jobs (before the request is awarded) is a violation of our terms of use. We supervise all site activity for such infringements and can immediately expel transgressors on the spot, so we thank you in advance for your cooperation. If you notice a violation please help out the site and report it. Thank you for your help.
 

 
send private message
Shortlist
Decline Bid
dhamcoder  
Baroda, IN
location
US$100
bid amount

5.00/105.00/105.00/105.00/105.00/105.00/105.00/105.00/105.00/105.00/10
(1 reviews)

feedback
5 day(s)
delivery time

 
 
Dear Sir, We have more than 6 years of experience in Software Fields to work with commercial customers around USA as well as all around Glob. Customer satisfaction is our valuable profit. We have expertise in various domains and having enough work experience in it. Please Check PM for more details. Thanks Dhamcoder
Bid Time: 06-08-2009 02:02
 
send private message
Shortlist
Decline Bid
jaykishanmotwani  
bangalore, IN
location
US$85
bid amount

1.00/101.00/101.00/101.00/101.00/101.00/101.00/101.00/101.00/101.00/10
(1 reviews)

feedback
6 day(s)
delivery time

 
 
Hi Sir, We have gone through your complete requirements. Here is our company profile. SapNeoSoft Technologies Pvt. Ltd. incorporated in 2008 as an entity promoted by well-qualified engineers, Computer professionals and businessmen specialized in Data Conversion, IT Enabled Services, Software Development and 2D Animation who bring with them several years of business and professional experience. This rich experience of promoters in various industries helps the organization assimilate customer requirement at a faster pace. So What are we WAITING for? ….. Let’s Begin Now. Warm Regards, jaykishan SapNeoSoft Technologies Pvt. Ltd.
Bid Time: 06-09-2009 10:21
 
send private message
Shortlist
Decline Bid
gtss  
Chengdu, CN
location
US$100
bid amount

(No Feedback Yet)
feedback
7 day(s)
delivery time

 
 
Dear Sir or Madam, We have gone through all the description of your project. We can do this project for you. Please check the PM. Regards, Lisa, Sun.
Bid Time: 06-08-2009 00:26
 
send private message
Shortlist
Decline Bid
jssmith2009  
kerela, IN
location
US$70
bid amount

(No Feedback Yet)
feedback
5 day(s)
delivery time

 
 
Hi, This is js, I had read ur requirement and we have done the similar application based on voice buffering, the application will buffer all the voice from different inputs and after the buffering it will generate the output in a custom player. Pls revert me the details. regards JS.
Bid Time: 06-08-2009 03:40
 
 


 
Get the Free Step-by-Step Guide on How to Use GetACoder
The act of outsourcing jobs has become easy in the past few years thanks to GetACoder. However, our team aims at making the whole process even easier. So, it has now come the time to provide you with a step-by-step guidance on how to use this service and succeed in the outsourcing world totally for FREE.

It doesn't matter if you are a more experienced user or a novice; using GetACoder will become even simpler with the help of this E-book. There are two major sections: a Buyers section and a Coders section.

Buyers will learn:
  • How to outsource safely
  • How to pick the best freelancers
  • How to manage time and money

Coders will learn:

  • How to get the best jobs
  • How to secure their payments
  • How to build a long-lasting relationship with buyers

    ...and MUCH MORE
Clear examples and pictures illustrating key situations, great tips and real testimonies of some of our best users... all in this Outsourcing Guide.  So don't loose the outstanding opportunity to download GetACoder FREE E-book.
The Outsourcing Revolution: Why It Makes Sense and How to Do It Right
The Outsourcing Revolution: Why It Makes Sense and How to Do It Right
What is GetACoder?

GetACoder.comGetACoder is a leading Global Services Marketplace doing business in more than 200 countries. Our unique system accelerates your time to market and provides your business with key competitive advantages. When you use GetACoder you are stretching your budget and saving as much as 60% over traditional outsourcing. GetACoder is changing business, now it's no longer about what you own or build but which resources and talent you can access. With GetACoder you reduce expenses, increase efficiencies, aggressively grow your business, and create a sustainable competitive advantage. GetACoder makes outsourcing to any part of the world an easy task! With GetACoder it's simple to outsource any business request, gain access to global talent and manage jobs online.

One of the main advantages of GetACoder is the low labor cost. The typically rates are about seven times lower than the ones in the US or Europe. Posting a request at GetACoder allows the right professional or company to find you and to bid for your work. We are building a reputation for exceeding our customers' expectations and for becoming an extremely cost effective way to outsource work. Use GetACoder when you want to save money, increase efficiency or accelerate the development of your request. With GetACoder you focus on growing your business and let others do the tedious work. Post your request on GetACoder for free. Find out why people outsource jobs with us day after day.

Thousands of Satisfied Customers - Submit/View Quotes


-I'm very happy to have discovered GetACoder. I just got my site fixed for a low price and it was very fast. Thanks! - Marcelo
-We, EBoys are small group of people trying to get some quality work from the world of information. So we decided to go with GAC because we liked the simple, easy interface and amount of projects posted. Now, we are doing really well. We have got lot of projects through them. Most important part is, when you need support or you have any complains about any user, you can just email GAC support and you will have response within couple of days, and that too really, really prompt. Last but not least, the payment processing, they are really prompt in that, you will never loose your money unless you cross your legal boundaries. We are really thankful to GAC for providing us this wonderful opportunity to develop our small firm and meet various clients out there in the universe. - eboys
-Thanks very much GetACoder for helping us. I am very satisfied with the support team at GetACoder. I have had nothing but first class help in every situation. Regards - SYSOL
Report Violation    Privacy Policy     Affiliate Program    Terms of Use    Contact Us    Help      GetACoder.com on Facebook      Follow GetACoder on Twitter      GetACoder.com Latest Requests RSS Feed
© 2004-2010 GetACoder. All rights reserved.