
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...
07/08/2026
Diversified has appointed industry veteran Pete Emminger as global chief technology officer. Emminger will lead the company's global go-to-market technology...
07/08/2026
O'Shea Jackson Jr., Dave Franco, and Mason Thames appear in Idiots by Macon Blair, an official selection of the 2026 Sundance Film Festival. (Courtesy of ...
07/08/2026
An instrument made for the adventurous composer
Described as an instrument made for the adventurous composer , Sonuscore's latest sample library has b...
07/08/2026
Latest solo Synchron libraries arrive
VSL have just released the final two instalments in their range of muted solo string libraries. Recorded in the large ...
07/08/2026
Channel strip offers plug-in control & recall
Along with some new additions to their Inherit modular preamp system, GC Audio's announcements for NAMM 20...
07/08/2026
Opening Statement: Public hearing of the Inquiry into Racism, Hate and Violence ...
07/08/2026
DoubleVerify Shareholders to Receive $13.60 Per Share in Cash, Representing a 30...
07/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
07/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
07/08/2026
The Award Recognizes ACT's Outstanding Sales Performance, Marketing Collaboration and Long-standing Commitment to the NEUTRIK Brand
ACT Entertainment, one ...
07/08/2026
Beamr Imaging Ltd. (Nasdaq: BMR), a leader in video optimization technology and solutions, today announced it is bringing AI upscaling to live sports, broadcast...
07/08/2026
Berklee City Music Presents Nine Scholarships and Awards at Annual Concert Student recipients from seven states and Canada received scholarships, housing awar...
07/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
07/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
07/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
07/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
07/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
07/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
07/08/2026
Riedel Communications at IBC2026: Live Production Experience Showcasing Integrated IP Production Workflows
At IBC2026, Riedel Communications will bring modern ...
07/08/2026
Shotoku Showcases Expanding Aura PTZ Ecosystem and Award-Winning Swoop Robotic Crane at IBC2026
Shotoku Broadcast Systems will officially introduce its Aura fa...
07/08/2026
Highlights will include new Dante fiber connectivity, expanded IPMX capabilities and award-winning signal processing solutions
Cobalt Digital, the leading des...
07/08/2026
Bob Moses Concert at Red Rocks Captured with URSA Cine 12K LF
Brie Clayton August 6, 2026
0 Comments
PYXIS 12K and URSA Cine 12K LF enable cinematic c...
07/08/2026
Use It or Else Is Not an AI Implementation Strategy
Andy Marken August 6, 2026
0 Comments
Source - Hitchhikers Guide to the Universe, Touchstone Pi...
07/08/2026
Friday 7 August 2026
Heated Rivalry will return to Sky and NOW in Spring 2027 e...
07/08/2026
Migration of more than 1,000 radio services delivers improved resilience, efficiency and sustainability
07 August 2026, Winchester, UK Arqiva, the UK's l...
07/08/2026
On 6 August, the European Commission and the SpaceRISE consortium concluded nego...
07/08/2026
The Traitors Ireland Uncloaked is also back with all the behind the scenes drama...
06/08/2026
The broadcaster's 14-race schedule begins in Iowa and ends in November with ...
06/08/2026
In-venue and creative video staffers at the professional and collegiate level ha...
06/08/2026
As media organizations consolidate teams, technology platforms, and content libr...
06/08/2026
Firmware updates introduce Dolby's next-generation picture engine, content-aware optimization, and new motion and ambient-light tools...
06/08/2026
TNT Sports will have wall-to-wall coverage of the upcoming FIBA Women's Bask...
06/08/2026
swXtch.io (Stand 5.MR13) has unveiled groundSwXtch for Audio over IP (AoIP), a software application that lets broadcasters and media organizations move audio in...
06/08/2026
At IBC2026, Riedel Communications (Stands: 10.A24, 10.A31, 10.A38) will bring modern media production to life with the Live Production Experience - a connected ...
06/08/2026
The first live-sports director to receive the prestigious honor, eight-time Emmy...
06/08/2026
NBC Sports will continue to present the Preakness Stakes on NBC and Peacock thro...
06/08/2026
Cobalt Digital (Stand 8.F90) continues to reinforce its commitment to delivering...
06/08/2026
Wave Central has promoted promotion Jeff Daubert to Director of Sales, Americas.
In his expanded role, Daubert will lead Wave Central's sales strategy and ...
06/08/2026
KMH Integration is expanding its ability to serve media, broadcast, and IT organizations by adding Keith Hanadel, an accomplished architect with decades of indu...
06/08/2026
Advanced Systems Group (ASG) has promoted Michele Ferreira from Vice President of its Systems Integration team to the newly created position of Chief Business O...
06/08/2026
Demonstrations will include new JPEG XS, Dolby audio, cloud-gateway, stream-processing, and distribution capabilities...
06/08/2026
The deal includes three premium mobile units, engineering personnel, existing br...
06/08/2026
Broadcast Management Group produced Amazon Prime's inaugural Obsessed Fest a...
06/08/2026
Exhibit will feature new variable-ND functionality, OLED viewfinders, remote-camera tools, and UHD production monitors...
06/08/2026
Compact full-frame E-mount lens targets sports, wildlife, and other long-range shooting applications...
06/08/2026
Live broadcast will honor Roger Federer and Mary Carillo on Aug. 29, with onsite...
06/08/2026
End-zone board receives higher-resolution LED technology and an updated Show Control system ahead of the 2026 football season...