
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
05/01/2027
Worlds first 802.15.4ab-UWB chip verified by Calterah and Rohde & Schwarz to be ...
07/10/2026
Dalet, a leading technology and service provider for media-rich organizations, today announced the latest Long-Term Supported (LTS) release of Dalet Flex. Build...
06/09/2026
June 9 2026, 23:00 (PDT) Dolby and MagentaTV Bring Fans Closer to the FIFA Worl...
04/08/2026
Dalet, a leading technology and service provider for media-rich organizations, t...
25/07/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
25/07/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
25/07/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
25/07/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
25/07/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
25/07/2026
Export FCP7 to XML Without Needing FCP7 Installed
Dave Rice July 24, 2026
0 Comments
I've created an open source tool that allows you to export FC...
25/07/2026
Documentary Sell Your House Edited with DaVinci Resolve Studio
Brie Clayton July 24, 2026
0 Comments
Filmmakers post feature documentary from opposite...
25/07/2026
Time to Act: Bringing a New Opera to Life Boston Conservatory at Berklee vocal arts students played a vital role in shaping the opera's creative developme...
25/07/2026
Beyond the Score For Dean of Music Kevin Haden, the boundless possibilities of classical music begin with process.
July 24, 2026
By
Kevin Haden
Michelle ...
25/07/2026
Reading the Room As music director of two major orchestras, conductor Jonathon Heyward aims to make the concert hall a space for everyone.
July 24, 2026
By
...
24/07/2026
Referee hat cameras, player/coach mics, and virtual graphics will be deployed at the three-day event for the first time
The NFL FLAG Championships return to ES...
24/07/2026
Qvest, Ateme, and Scaleway have partnered to offer broadcasters, media organizat...
24/07/2026
LTN has completed satellite-to-IP migrations for more than 3,000 broadcaster, MVPD (Multi-Channel Video Programming Distributor), head-end, and content owner si...
24/07/2026
Chyron has released Virtual Placement 8.1, an update to its live sports virtual graphics platform. The release adds workflow and graphics changes across chroma ...
24/07/2026
Riedel's RefCam Live was used for the first time at an international soccer match during a friendly between the German men's national team and Ghana in ...
24/07/2026
USSI Global said it is prepared to help broadcasters, satellite network operators, and media organizations manage the next phase of C-band spectrum clearing, fo...
24/07/2026
FuboTV and The Athletic have launched The Athletic Video Hub on Fubo, bringing The Athletic's sports video content to connected TV (CTV) for the first time....
24/07/2026
Tagboard and Momento have partnered to bring Momento's fan reaction photos to venue videoboards in real time following big plays. The Seattle Mariners will ...
24/07/2026
Stephen Arnold Music (SAM) created an anthem called The World Is Here for Fox ...
24/07/2026
Caz TV has acquired Brazilian broadcast rights to the entire WTA Tour driven by Mercedes-Benz, covering all WTA 250, WTA 500, and WTA 1000 tournaments. The agre...
24/07/2026
SiriusXM and WWE have launched WWE Radio on SiriusXM channel 156, beginning Monday, July 27. The channel will carry live audio of WWE Premium Live Events, audio...
24/07/2026
Harvard Athletics produces more than 325 live NCAA Division 1 sports events and 500 edited videos per year. To manage video capture, streaming, recording, and s...
24/07/2026
Chyron's PRIME 5 graphics platform supported live graphics workflows for NBCUniversal Telemundo's FIFA World Cup 2026 coverage across Telemundo, Univers...
24/07/2026
Wearable tech returns to the coverage, and a brand-new mobile unit is rolled out for the 2026 edition
The 21-stage Tour de France is nearing its conclusion. Th...
24/07/2026
More than 20 cameras, extensive player and coach audio, and a REMCO production model will power coverage of the league's showcase
For an event designed to ...
24/07/2026
New broadcast tool uses live timing, telemetry, and predictive analysis to decode real-time team decision-making for fans at home...
24/07/2026
Ratings Roundup is a rundown of recent rating news and is derived from press rel...
24/07/2026
First string library captured at Studio Richter Mahr
The latest sample library to be created at Max Richter's Studio Richter Mahr facility captures the ...
24/07/2026
Official emulation of Blackbird Studios reverb chamber
In their latest collaboration with Blackbird Studios, KIT Plugins have captured the sound of the Stud...
24/07/2026
Sohonet's partners at BIND Studio have published a great case study on the V...
24/07/2026
Angela Gomez brings over 14 years of experience in broadcast communications and audio engineering, specialising in live outside broadcasts, live sports and larg...
24/07/2026
Between the maturation of IP and remote production workflows, collegiate sports production is advancing rapidly. For an Ivy League institution like Harvard, kee...
24/07/2026
iWedia, a global provider of software solutions for connected TV devices, today announces the launch of Teatro Factory, a new operator-facing software factory o...
24/07/2026
Yospace, the trusted leader in Dynamic Ad Insertion (DAI), stitched 11.57 billion one-to-one addressable advertisements into live video streams during the 2026 ...
24/07/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
24/07/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
24/07/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
24/07/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
24/07/2026
Current DASDEC software enables customers to comply with the FCC's new 15-character password mandate without requiring updates
LYNDONVILLE, N.Y. July 23,...
24/07/2026
At the IBC2026 Show, SDVI will give European media organizations their first hands-on look at the next-generation Rally media supply chain management platform f...
24/07/2026
Sonnet Technologies at IBC2026
Brie Clayton July 23, 2026
0 Comments
Hero image: Sonnet Twin25G T5 Thunderbolt 5 Adapter
At this year's IBC Sho...
24/07/2026
Musora Enhances Online Music Lessons with Blackmagic Design
Brie Clayton July 23, 2026
0 Comments
Director of Production Josh Holliday details workflo...
24/07/2026
Interview with Production 360. Original article published here
The theme of thi...
24/07/2026
Article courtesy of postPerspective
Read the article
While Toy Story 5 maintai...
24/07/2026
Kerry and Mayo fans Up For The Match as excitement builds in Croke Park on the e...
23/07/2026
Staines-upon-Thames, UK, 23rd, JULY, 2026 - Yospace, the trusted leader in Dynamic Ad Insertion (DAI), stitched 11.57 billion one-to-one addressable advertisem...