
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 ...
04/08/2026
Dalet, a leading technology and service provider for media-rich organizations, t...
04/07/2026
April 7 2026, 19:00 (PDT) Detective Conan: Fallen Angel of the Highway Opens in...
01/06/2026
January 6 2026, 05:30 (PST) Dolby Sets the New Standard for Premium Entertainment at CES 2026
Throughout the week, Dolby brings to life the latest innovatio...
27/05/2026
Telestream has announced that its Board of Directors has appointed Benjamin Desbois as Chief Executive Officer, effective July 1, 2026. Desbois, currently Teles...
27/05/2026
ESPN garnered 10 awards; NBC's Sunday Night Football received the Outstandin...
27/05/2026
Matrox Video is celebrating its 50th anniversary, marking five decades of operations from its headquarters in Montreal, Canada. Founded in 1976, the company has...
27/05/2026
Major League Baseball has announced a series of initiatives tied to America's Semiquincentennial, including a national marketing campaign, Fourth of July br...
27/05/2026
Advanced Systems Group (ASG) has announced that Brian Gross has joined the company as an Account Manager on its Audio team, based in the Burbank office. He will...
27/05/2026
Nielsen has released new research on soccer fandom ahead of the FIFA World Cup 2...
27/05/2026
ESL FACEIT Group (EFG) has unveiled a new partnership with TikTok to bring broad...
27/05/2026
FIFA's Oscar Sanchez gives a deeper look to how this tournament will be cove...
27/05/2026
The soon-to-be senior from Charlottesville is building her skills in replay, TD, and even creative content for HokieVision and its ACC Network productions
In t...
27/05/2026
FOX Sports' Mike Davies breaks down the vision for this summer's showcas...
27/05/2026
HBS's Paul King, FIFA's Oscar Sanchez preview how the masses at home wil...
27/05/2026
FOX's MLB coverage dominated the night at the 47th Annual Sports Emmy Awards...
27/05/2026
One of the most memorable Postseasons in baseball history would have had no memo...
27/05/2026
NBC's Sunday Night Football is among the most decorated and most watched programs in the history of television. It added to its jam-packed trophy case on Tu...
27/05/2026
The 2026 Sports Emmys marked a watershed moment for Prime Video Sports. After bu...
27/05/2026
With the Opening Match just over two weeks away, the entire sports-production-te...
27/05/2026
Spotify already brings together listeners' favorite music, podcasts, and audiobooks in one place. Now, we're trialing a new format that expands the cont...
27/05/2026
The best podcast moments deserve more than just a mental note. That's why today, we're making those moments easier to save and share with clips.
Whethe...
27/05/2026
On Purpose is one of the most popular podcasts in the world, known for conversat...
27/05/2026
On May 8, 1,500 of Olivia Rodrigo's top fans gathered in Barcelona's Tea...
27/05/2026
Hybrid design combines large-diaphragm capsule & ribbon
JZ Microphones have teamed up with Grammy-winning producer and engineer Marc Urselli to develop a ne...
27/05/2026
Three new plug-ins inspired by classic tape effects
AIR Music Tech's latest release delivers a set of plug-ins that aim to capture the character, moveme...
27/05/2026
Piano played on the edge of silence
The Crow Hill Company's Vaults collection offers a continual rotation of instruments that are given away for free fo...
27/05/2026
Recreates Moog's iconic Memorymoog polysynth
Arturia's vast software instrument range offers a combination of new and old, with innovative modern so...
27/05/2026
Offers loudness levelling for speech and dialogue
Accentize have built up a solid reputation with their audio-restoration tools, and their latest plug-in is...
27/05/2026
10,000 units strong - The Rohde & Schwarz R&S M3SR Radio 4400 Rohde & Schwarz celebrates a major manufacturing milestone, producing its 10,000th R&S M3SR Radi...
27/05/2026
The XL Converge 300P radio system emerges with a groundbreaking feature set enhancing the mission-critical communications of public safety, federal and critica...
27/05/2026
Pairing Two47 MCX software with existing LTE networks means tailored system upgrades that can save time, money and lives....
27/05/2026
PAC-3 MSE offers improved range, speed, and maneuverability, making it an effect...
27/05/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
27/05/2026
Star Trek VFX: Recreating John Knoll's Iconic Warp Stars without a Slitscan ...
27/05/2026
Adventure World Uses Blackmagic Replay for Marine Live
Brie Clayton May 27, 2026
0 Comments
Large screen displays and slow motion replays dynamically ...
27/05/2026
Berklee Alumna and Assistant Professor Olivia P rez-Collellmir to Premiere Origi...
27/05/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
27/05/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
27/05/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
27/05/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
27/05/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
27/05/2026
Co-founder Dan Castles to transition to Executive Chair; internal promotion reinforces continuity and long-term growth
Telestream, a global leader in media wor...
27/05/2026
Big Blue Marble today announced that its Nakolos platform is the first end-to-end 5G Broadcast solution worldwide to implement the complete feature set introduc...
27/05/2026
Lightware recently hosted the Girls' Day event in April at its headquarters in Budapest, welcoming students for an interactive introduction to engineering a...
27/05/2026
27 May 2026
VEON's Kyivstar and Uklon Launch Ukraine's First Live Testi...
27/05/2026
May 27th, 2026 May 27, 2026
Press Materials Available Here
TRIBECA X Announc...
26/05/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
26/05/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
26/05/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...