
Three Simple Methods to Invoke the Vidispine API From .NET Code by Vidispine June 15, 2016 Howto
Binagora is on fire and returns with another guest post. We know we have a bunch of developers on .NET, therefore we created a .NET SDK. This post shows how you can invoke the Vidispine API from .NET, using the SDK or using standard .NET classes. All with example code.
The following article describe three simple ways to invoke the Vidispine API from .NET code. Two of them use standard .NET classes, while the last one uses the Vidispine .NET SDK. Code snippets were written using C# but you can of course use another language, such as VB.NET, if you want to.
We'll use the simplest test case possible, and let us retrieve the id of the first available item in the Vidispine library.
First of all, let's see how it's done in Postman. As you may already know, it's just a simple http GET request to the Vidispine API to retrieve an item id.
Notice that we're using two Postman variables for a specific environment:
{{vs}}: this is the Vidispine base address (url + port)
{{credentials}}: this is the username and password in basic http format (:) encoded in base64.
Ok, that was the principle of how to query the Vidispine API for an item id. Now let's do the same thing from code.
Given the following constants:
C#
private const string address = http://xxx.xxx.xxx.xxx:8080/API; private const string userName = admin; private const string password = admin;
1
2
3
private const string address = http://xxx.xxx.xxx.xxx:8080/API;
private const string userName = admin;
private const string password = admin;
Option 1: Using WebRequest class
C#
private static string GetUsingWebRequest(string requestUri) { var request = (HttpWebRequest)WebRequest.Create(requestUri); request.Credentials = new NetworkCredential(userName, password); using(var response = (HttpWebResponse)request.GetResponse()) { var stream = response.GetResponseStream(); var reader = new StreamReader(stream); string result = reader.ReadToEnd(); return result; } }
1
2
3
4
5
6
7
8
9
10
11
12
13
14
private static string GetUsingWebRequest(string requestUri)
{
var request = (HttpWebRequest)WebRequest.Create(requestUri);
request.Credentials = new NetworkCredential(userName, password);
using(var response = (HttpWebResponse)request.GetResponse())
{
var stream = response.GetResponseStream();
var reader = new StreamReader(stream);
string result = reader.ReadToEnd();
return result;
}
}
Create a WebRequest, set the credentials and execute the request. Remember to release the request calling the Dispose() method or wrapping the instance into a using statement as we did in the sample.
Notice that in this case, we know the response contains a plain text with an item id. That's why we read the stream, and converts it into a string instead of a specific type.
Option 2: Using HttpClient class
C#
private static string GetUsingHttpClient(string requestUri) { var handler = new HttpClientHandler() { Credentials = new NetworkCredential(userName, password) }; var client = new HttpClient(handler); client.BaseAddress = new Uri(address); string message = client.GetStringAsync(requestUri).Result; return message; }
1
2
3
4
5
6
7
8
9
10
11
12
13
private static string GetUsingHttpClient(string requestUri)
{
var handler = new HttpClientHandler()
{
Credentials = new NetworkCredential(userName, password)
};
var client = new HttpClient(handler);
client.BaseAddress = new Uri(address);
string message = client.GetStringAsync(requestUri).Result;
return message;
}
Similar to previous option, it is just a matter of using another http client from the .NET framework.
In this case, credentials are specified on a client handler, then the http client is created using that handler.
The request is executed asynchronously, which is powerful and could be needed in a real situation.
In this case we're just reading the Result property immediately, but it's important to understand that the request is fired in an independent thread. Once thread is completed, you can execute your own callback.
Option 3: Using Vidispine .NET SDK
C#
private static string GetUsingVidispineSdk() { var rootResource = new VidispineResource(address).Authenticate(userName, password); var itemResource = rootResource.Item; string result = itemResource.SearchPlainGET.Number(1).CallText(); return result; }
1
2
3
4
5
6
7
8
private static string GetUsingVidispineSdk()
{
var rootResource = new VidispineResource(address).Authenticate(userName, password);
var itemResource = rootResource.Item;
string result = itemResource.SearchPlainGET.Number(1).CallText();
return result;
}
Finally the easiest way to do it, just call the SDK. Notice that in this case, the action to be executed is not part of the address. You specify the object and action based on the properties. We may say this is the strongly typed option to do it.
You can find more information about how to download and use the Vidispine .NET SDK in the post Getting Started With the Vidispine .NET SDK. If you want to try out the SDK, you can find the latest versions of the SDK here:
64-bit version of the Vidispine .NET SDK v4.5
32-bit version of the Vidispine .NET SDK v4.5
Running the app will show you the result 3 times, once for each option. In this case first item available is #525 but of course that will depend on your environment.
You can download the full console app code from the following GitHub Gist.
Hope you like it.
This blog post was written by our friends at Binagora. Check them out and see how they can help you with your next Media&Entertainment project.
Most recent headlines
04/09/2025
Monumental Sports & Entertainment (MSE), in collaboration with Dalet, has been a...
01/05/2025
WASHINGTON The Corporation for Public Broadcasting has filed a lawsuit to stop the Trump administration from firing three of its board members, claiming the pre...
01/05/2025
HONG KONG Riedel Communications today said it has opened a new office in Hong Kong, enhancing its presence in the Asia-Pacific region....
01/05/2025
MUMBAI, India & BALTIMORE In a development that could advance efforts to bring NextGen TV to cellphones, FreeStream Technologies, Lava International and HMD hav...
01/05/2025
01 05 2025 - Media release Screen Australia empowers 100 distinctive Australian narratives
All The Boys Are Here writer/director Goran Stolevski and It s All...
01/05/2025
How PFX Delivered 750 VFX Shots in Just Four Months For Anthony Hopkins Thriller...
01/05/2025
Careline's New Wave Makeup Commercial Shot With URSA Cine 12K LF
Brie Clayton May 1, 2025
0 Comments
CAD Studios relies on large format, full fram...
30/04/2025
Film elements held at the Deluxe warehouse in March of 2015. Photo by Luis Silva...
30/04/2025
EA SPORTS FC 25 fans in Australia and Saudi Arabia, get ready to immerse yourselves in the beautiful game like never before. Spotify is excited to announce a n...
30/04/2025
The past year has been nothing short of a whirlwind for Tucker Wetmore. After th...
30/04/2025
Mexico's love for podcasts is no longer a trend-it's a lifestyle. With m...
30/04/2025
Slam poet Huda the Goddess wins 2025 Les Murray Award
30 April, 2025
Media releases
Australia for UNHCR and SBS are proud to announce that Huda Fadlelmawla...
30/04/2025
SBS, NITV and NIDA partner to empower the next generation of screen creatives
30 April, 2025
Media releases
SBS, National Indigenous Television (NITV) and ...
30/04/2025
By Joyce JC Cataldo
The media and entertainment industry is evolving faster than ever. Technology is shifting the way we create, distribute, and experience c...
30/04/2025
An image of Valencia, Spain, in the OneAtlas Living Library...
30/04/2025
NEWPORT BEACH, Calif. WPSD-TV, the NBC affiliate in Paducah, Ky., has selected Bitcentral's Central Control playout system to upgrade the station's mast...
30/04/2025
AMSTERDAM Zero Density, a global provider of virtual studio productions and on-air graphics, has appointed Baris Zavaroglu as its new CEO. Zavaroglu succeeds Of...
30/04/2025
The Avit Group, a forward-thinking audio-visual technology company, is bringing over 50 years of combined experience in delivering audio-visual design and insta...
30/04/2025
NXTGENbps will be showcasing its latest sustainable battery power solutions at this year's Media Production & Technology Show (MPTS), appearing alongside pa...
30/04/2025
Van Dyke skates and operates on Shoresy | photo by Dave Ferguson
Toronto-based Cinematographer Brett Van Dyke (Heartland, Jann, Carter) stepped into the rink...
30/04/2025
Leading provider of media playout solutions PlayBox Neo will exhibit a vast array of significant upgrades to its range of smart media innovations at CABSAT from...
30/04/2025
ITV Studios is renowned for its award-winning productions, including the reality TV phenomenon I'm a Celebrity Get Me Out of Here! Produced by Lifted Ente...
30/04/2025
The UK's presence at this year's CABSAT brings together 20 innovative companies under the GREAT Britain and Northern Ireland banner. From advanced infra...
30/04/2025
Lightware continues to strengthen its Environmental, Social, and Governance (ESG) initiatives by fostering diversity, inclusion, and community engagement within...
30/04/2025
LiveU is demonstrating for the first time in the UK, its revolutionary technological breakthrough in IP-video transport, LiveU IQ (LIQ ) and bringing its expand...
30/04/2025
Stand: A40
Calrec has been putting sound in the picture for more than six decades and is still pushing the boundaries of audio broadcasting with a full range o...
30/04/2025
Buckinghamshire New University (BNU) has opened its new virtual production studio, designed and integrated by CJP Broadcast. The installation equips students wi...
30/04/2025
Independent news producer in India focuses on delivering stories
nxtedition has supplied a complete newsroom system to Collective Newsroom, based in New Delhi,...
30/04/2025
Connecting the present, building the future
FOR-A, a cutting-edge video broadcast technology company backed by more than 50 years experience, will showcase it...
30/04/2025
DAD by NTP Technology reports a successful NAB Show in Las Vegas where the company focused on upcoming expansion options in development for its Thunder | Core a...
30/04/2025
CVP and Canon UK & Ireland are proud to announce the winning projects from the third annual Stories in Motion Young Filmmakers Awards, which took place on the e...
30/04/2025
Leading video software provider, Synamedia, today announced that beIN MEDIA GROUP ( beIN'), one of the foremost global sports and entertainment broadcasters...
30/04/2025
The Canadian Premier League (CPL) today launched a new-look website and app, offering supporters of Canada's men's domestic professional soccer league a...
30/04/2025
WASHINGTON In a wide-ranging press conference, Federal Communications Commission Chair Brendan Carr had both good and bad news for broadcasters, stressing that ...
30/04/2025
TORONTO Cignal TV is relying on Quickplay's Shorts tool for its recently launched Pilipinas Live Shorts service, available to millions of users of Pilipinas...
30/04/2025
NEW YORK Steve Lanzano will retire as president and CEO of the Television Bureau of Advertising at year-end, the group said....
30/04/2025
The news production tech provider nxtedition is reporting that it supplied a complete newsroom system to Collective Newsroom, an independent news producer based...
30/04/2025
NEW YORK As part of a major push to advance the role that artificial intelligence (AI) plays in the advertising industry, the Interactive Advertising Bureau has...
30/04/2025
Uzbekistan Airways is the latest airline to choose SES's network, while Thai...
30/04/2025
Loaded Uses Blackmagic Design for shroud Subathon Live Streams
Brie Clayton April 29, 2025
0 Comments
Blackmagic Studio Cameras and Micro Studio Camer...
30/04/2025
Help shape the future of video creator tools with MIDiA
Brie Clayton April 29, 2025
0 Comments
After a successful debut in 2024, MIDiA is calling once...
30/04/2025
Tania Le n and Kelli O'Hara to be Honored at Boston Conservatory at Berklee&...
30/04/2025
Andr 3000 and Sara Bareilles to Receive Honorary Doctorates at Berklee College ...
30/04/2025
Damien Molony will head back to Jersey for a second series of Bergerac, written by Toby Whithouse alongside Ashley Sanders, Emilie Robson and Faebian Averies
D...
30/04/2025
Advancing multi-domain EW operations: Rohde & Schwarz unveils latest innovations...
30/04/2025
Rohde & Schwarz pioneers the future of automotive Ethernet using Analog Devices&...
30/04/2025
Wuppertal April 30, 2025
Riedel Communications Expands Asia-Pacific Presence with New Office in Hong KongRiedel Communications, a global leader in real-time v...
30/04/2025
Back to All News
Mad Unicorn' Trailer Reveals a Riveting Rags-to-Riches Sa...
30/04/2025
Back to All News
Get Ready to Get Wild: Netflix Announces Mating Season, a New ...
30/04/2025
SAN JOSE, Calif. - April 30, 2025 - Harmonic (NASDAQ: HLIT) today announced that...