
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...
07/09/2026
By Ramona Flume and Lucy Spicer
There's a particular kind of magic that hap...
07/09/2026
Two new full-range, flat-response cabinets introduced
HeadRush have recently introduced a pair of new full-range, flat-response cabinets designed for player...
07/09/2026
Answering questions about AI in game audio
GameSoundCon, the largest professional conference for video game music and sound design, have announced that they...
07/09/2026
New directional headset mic on show at IBC
Just ahead of this week's IBC show, DPA have announced the launch of a new directional headset that's bee...
07/09/2026
We are not building systems to replace human decision-making; we are building systems that execute our decisions at machine speed. The media companies that win ...
07/09/2026
Blackmagic Design Announces New Lower Price for Blackmagic PYXIS 6K and Blackmag...
07/09/2026
GB Labs to Unveil Core.ONE at IBC2026, an Intelligent Storage Platform for Media...
07/09/2026
Monday 7 September 2026
Freddie Meredith joins cast of SNL UK ahead of start of Season 2
Freddie Meredith Images
ZIP (3MB)
Saturday Night Live UK announces ...
07/09/2026
Monday 7 September 2026
Sky and NFTS team up to launch new routes into screen careers
Sky has today announced a new apprenticeship programme, with application...
07/09/2026
Monday 7 September 2026
Sky Sports announces most comprehensive NFL coverage to...
07/09/2026
Dolby, MainConcept, Techex and J nger Audio will showcase the industry's first demonstration of Serial Audio Definition Model (S-ADM) in a cloud-based produ...
07/09/2026
dB Broadcast will showcase APIS Hive, its software platform for designing, deploying and managing modern broadcast infrastructures, at IBC 2026.
Developed from...
07/09/2026
552,000 streams on RT Player
The historic fight, which saw Katie Taylor become...
06/09/2026
Recreates Rolands TB-303 & MC-202
BS-203 MacroAcidizer is the first virtual instrument from Born Second, and it offers a recreation of two Roland classics -...
06/09/2026
London, UK September 2026 PlayBox Technology is inviting broadcasters, OTT and FAST operators, content owners and media organisations worldwide to become De...
06/09/2026
June 9 2026, 23:00 (PDT) Dolby and MagentaTV Bring Fans Closer to the FIFA Worl...
05/09/2026
MK2 & Bass system control app improved
HEDD Audio have just launched a new and improved version of the control software that pairs with their MK2 and Bass m...
05/09/2026
The National Film and Video Foundation (NFVF), an agency of the Department of Sp...
05/09/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
05/09/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
05/09/2026
InSync Technology, the leading provider of premium video conversion solutions, will showcase a new generation of products at IBC 2026, designed to help broadcas...
05/09/2026
GlobalM successfully supported quattro media GmbH and World Rowing, the world governing body of the Olympic sport of Rowing, with the international distribution...
05/09/2026
LA JOLLA, CA-In recognition of his exceptional work to understand the chemistry of carbohydrates and the role they play in health and disease, Scripps Family Ch...
04/09/2026
Media organisations interested in the Media Innovation Europe 3.0 Business Innovation Synergizer (BIS) can now consult a new FAQ document providing additional a...
04/09/2026
Eluvio will demonstrate updates to its Content Fabric platform at IBC2026 (Hall 8, Stand 8.MS5, and Future Tech Zone, Hall 14, Stand 14.A58, September 11-14). C...
04/09/2026
LiveU has joined the IBC Accelerator's Smart Stories consortium, a multi-vendor initiative developing an open standard for Story Context interoperability in...
04/09/2026
Telos Alliance will demonstrate new audio observability capabilities at IBC2026 (Stand 8.D37, RAI Amsterdam, September 11-14), covering monitoring of audio heal...
04/09/2026
World Team Tennis (WTT) has announced a broadcast partnership with USA Sports, the sports division of Versant. USA Sports will air all six of WTT's live mat...
04/09/2026
Gravity Media has appointed Alex Pannell as Chief Business Officer. Pannell joins from Appear, where he served as Chief Commercial Officer. He will be based in ...
04/09/2026
By Carrie Bowden
Staff Writer
Dalet has announced new agentic workflow capabilities for Dalia, its AI platform for media organizations, ahead of IBC2026. The ...
04/09/2026
L-Acoustics has achieved EN 54 certification across a portfolio of loudspeakers,...
04/09/2026
EVS and Matrox Video have announced a technology partnership integrating Matrox ...
04/09/2026
NEP Group will exhibit at IBC2026 (Hall 7, Stand 7.B55, RAI Amsterdam, September 11-14), demonstrating software-defined production capabilities across NEP Platf...
04/09/2026
The Television Academy has awarded an Engineering Emmy to Dr. Roman Foltyn, Chief Engineer of FoMaSystems, and Curt O. Schaller for the development of the ARRI ...
04/09/2026
InSync Technology will exhibit at IBC2026 (Stand 2.C30, RAI Amsterdam, September 11-14), demonstrating its FrameFormer and InGear conversion platforms for frame...
04/09/2026
The Professional Triathletes Organisation (PTO) has signed a multi-year agreemen...
04/09/2026
Accedo and MediaKind have announced a white-label, end-to-end streaming solution for operators, combining Accedo's native application framework and cloud-ba...
04/09/2026
TAG Video Systems has announced TAG Blue, a cloud platform for shared monitoring visibility across video delivery chains, with AI-powered root-cause analysis. T...
04/09/2026
TwelveLabs has launched a video compliance platform for media organizations, inc...
04/09/2026
The Television Academy and the National Academy of Television Arts & Sciences ha...
04/09/2026
Powerful new soft synth announced
Traveler is the first software instrument to be released by KeySolutions Sounds, and it's an ambitious one! Said to co...
04/09/2026
Free virtual instrument range expanded
The latest expansion of e-instruments' free Fragments series introduces a packed-down version of the company'...
04/09/2026
Company recognised for second time
Two years after winning an Engineering, Science & Technology Emmy Award for dxRevive Pro, Accentize have been recognised ...
04/09/2026
Bilbao - 3rd September 2026 -AgileTV, a leading provider of end-to-end TV and vi...
04/09/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
04/09/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
04/09/2026
ACEMAGIC First to Introduce Ryzen AI Max PRO 495 AI Mini Workstation at IFA 202...
04/09/2026
Krotos Brings Video to Sound Footsteps Directly into Premiere Pro and DaVinci Re...