Sony Pixel Power calrec Sony

ree Simple Meods to Invoke the Vidispine API From .NET Code

15/06/2016

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.
LINK: http://howto.vidispine.com/insight/three-simple-methods-to-invoke-the-...
See more stories from vidispine

Most recent headlines

05/01/2027

Worlds first 802.15.4ab-UWB chip verified by Calterah and Rohde & Schwarz to be demoed at CES 2026

Worlds first 802.15.4ab-UWB chip verified by Calterah and Rohde & Schwarz to be ...

04/08/2026

Dalet Announces Commercial Availability of Dalia, Bringing Media-Aware Agentic AI to Enterprise Productions

Dalet, a leading technology and service provider for media-rich organizations, t...

04/07/2026

Detective Conan: Fallen Angel of the Highway Opens in Dolby Cinemas Across Japan, Presented in Dolby Atmos and Dolby ...

April 7 2026, 19:00 (PDT) Detective Conan: Fallen Angel of the Highway Opens in...

01/06/2026

Dolby Sets the New Standard for Premium Entertainment at CES 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...

02/05/2026

Dalet Flex LTS Delivers Smarter Search, Faster Editing, and an AI-Ready Foundation for Modern Media

Dalet, a leading technology and service provider for media-rich organizations, t...

01/05/2026

NBCUniversal's Peacock to Be First Streamer to Integrate Dolby's Full Suite of Premium Picture and Sound Innovations

January 5 2026, 18:30 (PST) NBCUniversal's Peacock to Be First Streamer to ...

22/04/2026

Bolin Demos New PTZ Cameras and Controller at 2026 NAB Show

Share Copy link Facebook X Linkedin Bluesky Email...

22/04/2026

Anchor Audio Launches Beacon 3

Share Copy link Facebook X Linkedin Bluesky Email...

22/04/2026

FCC Grants WSWB TV License Transfer to Sinclair

Share Copy link Facebook X Linkedin Bluesky Email...

22/04/2026

Telemundo Puerto Rico Streaming Channel Launches On Prime Video

Share Copy link Facebook X Linkedin Bluesky Email...

22/04/2026

Chyron Announces PRIME Translate

Share Copy link Facebook X Linkedin Bluesky Email...

22/04/2026

TV Tech Announces Winners of Best of Show Awards at 2026 NAB Show

Share Copy link Facebook X Linkedin Bluesky Email...

21/04/2026

Live From NAB 2026: BitFires Colin Bonzey on Growing Spark Platform for Live Cloud-Based Productions

Cloud-based production isnt going anywhere, and BitFire is doubling down by prov...

21/04/2026

Live From NAB 2026: AWSs Jason Dvorkin, Regina Rossi on Driving Innovation With Al-Based Workflows

The topic of artificial intelligence has a stranglehold on the sports-video-prod...

21/04/2026

Live From NAB 2026: T-Mobile for Business' Jason Schnellbacher on Enhancing 5G for Sports Fans, Broadcasters

5G is still a hot topic in live event production, and this workflow continues to...

21/04/2026

Live From NAB 2026: Appears Ed McGivern on Fox Sports Deal, New XM Platform, and VX Software Debut

At the 2026 NAB Show, Ed McGivern, GM and President of Appear US, discusses the ...

21/04/2026

NAB 2026: Studio Network Solutions launches on-premise AI suite for media production workflows

Studio Network Solutions (SNS) has announced an on-premise AI suite designed for...

21/04/2026

NAB 2026: Suite Studios integrates file-streaming technology into Frame.io Drive

Suite Studios has integrated its file-streaming technology into the newly announced Frame.io Drive, a desktop application from Adobe company Frame.io. The colla...

21/04/2026

NAB 2026: Net Insight integrates InSync FrameFormer into Nimbra Edge for media processing

Net Insight has integrated InSync Technology's FrameFormer into the Nimbra E...

21/04/2026

NAB 2026: Fox Sports selects Appear X Platform for live production infrastructure

Fox Sports has selected Appear as a technology partner to support the next phase...

21/04/2026

NAB 2026: Diversified appoints Tyler Affolter as Chief Revenue Officer

Diversified has appointed Tyler Affolter as Chief Revenue Officer (CRO) to lead the company's commercial organisation. The appointment follows the firm'...

21/04/2026

NAB 2026: Layercake integrates Bitmovin into Streamcake platform for end-to-end media orchestration

Layercake has formalised the integration of Bitmovin's video streaming infra...

21/04/2026

NAB 2026: International Judo Federation extends global content distribution partnership with SES

The International Judo Federation (IJF) has extended its distribution partnershi...

21/04/2026

NAB 2026: Glookast integrates Cinnafilm Tachyon plugin to enable GPU-accelerated video processing

Glookast has launched the Cinnafilm Tachyon plugin for its Media Producer and Me...

21/04/2026

NAB 2026: Cadena Tres selects Eutelsat for television signal distribution in Mexico

Eutelsat has entered into an agreement with Cadena Tres, a division of Grupo Ima...

21/04/2026

NAB 2026: Dolby and TV Azteca deploy Dolby Atmos for free-to-air broadcast

Dolby Laboratories and TV Azteca have partnered to introduce Dolby Atmos immersive audio to free-to-air television broadcasts. The implementation utilises the A...

21/04/2026

Verizon and FOX Entertainment leverage 5G and AI for remote production of Extracted

FOX Entertainment partnered with Verizon to overcome significant production hurd...

21/04/2026

NAB 2026: Osprey Video to showcase expanded IP infrastructure and orchestration at NAB Show 2026

Osprey Video has announced its technology showcase for the NAB Show 2026, highli...

21/04/2026

NAB 2026: Riedel introduces IP-based production updates including multiviewer, commentary control and audio connectivity solutions

Riedel Communications (Booth C4908) introduced a range of new solutions at NAB S...

21/04/2026

SportsTechBuzz at NAB 2026, Day 3: Live Reports From the Show Floor in Vegas

The NAB Show is in full swing, and the SVG and SVG Europe editorial teams are chasing down the hottest stories from all over the Las Vegas Convention Center. He...

21/04/2026

NAB 2026: Blackmagic Design Announces URSA Cine Immersive 100G and URSA Cine Live Encoder

Blackmagic Design has announced the URSA Cine Immersive 100G, an immersive cinem...

21/04/2026

Live From NAB 2026: Clark Wire & Cables David McCarthy Showcases New Connectivity, Enclosure Solutions for Modern Broadcast Workflows at NAB Show 2026

Clark Wire & Cable is continuing its evolution from cable supplier to full-scale solutions partner for broadcast and live production. At the 2026 NAB Show, we s...

21/04/2026

Ricky Sensitively Portrays a Post-Incarceration Coming-of-Age

Rashad Frett attends the 2025 Sundance Film Festival premiere of Ricky at Eccles Theatre on January 24, 2025, in Park City, UT. (Photo by George Pimentel/Shut...

21/04/2026

5 Years of Spotify in Pakistan: The Trends Shaping the Country's Music Scene

Five years ago, Spotify arrived in Pakistan, opening a new chapter in the country's music scene. Since then, local listeners have explored across genres, ge...

21/04/2026

The Next Wave of RADAR Spain Artists Arrives for 2026

Since its launch in 2020, RADAR has been our program for spotlighting emerging artists around the world. This year marks the sixth edition of RADAR Spain, our o...

21/04/2026

EverSync SP-10 from Cloudvocal

Offers compact wireless solution for pedalboards Taiwanese audio brand Cloudvocal have announced the availability of a new pedalboard-friendly wireless syst...

21/04/2026

Arturia launch Augmented Persia

Latest hybrid sampling/synthesis instrument arrives Arturia's Augmented series offerings rely on a mixture of sampling and synthesis, allowing users to ...

21/04/2026

Rohde & Schwarz to host Power Electronics Online Conference From Design to Validation in May

Rohde & Schwarz to host Power Electronics Online Conference From Design to Vali...

21/04/2026

MAS and Lockheed Martin Announce F-35 Sustainment Partnership in Quebec

MAS and Lockheed Martin partner to establish an F-35 depot in Canada, enabling in-country sustainment and creating high-skilled aerospace jobs....

21/04/2026

Nielsen data shows Australian outdoor and sport retailers are changing how they advertise to win over outdoor enthusiasts

Advertising strategies shift as competition grows for a large, active and qualit...

21/04/2026

ATSC Celebrates 3.0's Global Expansion

Share Copy link Facebook X Linkedin Bluesky Email...

21/04/2026

Cinematic Feel Makes Survivor' Built to Last

Share Copy link Facebook X Linkedin Bluesky Email...

21/04/2026

Live Event Technology Expands Fan Engagement

Share Copy link Facebook X Linkedin Bluesky Email...

21/04/2026

MS NOW Uses Community to Build Up Its Brand

Share Copy link Facebook X Linkedin Bluesky Email...

21/04/2026

Why Broadcast Is Well-Positioned to Safeguard Freedom of Speech

Share Copy link Facebook X Linkedin Bluesky Email...

21/04/2026

AWS Demos AI Tools to Deliver Vertical Video

Share Copy link Facebook X Linkedin Bluesky Email...

21/04/2026

Video Podcasting Leaps in Popularity

Share Copy link Facebook X Linkedin Bluesky Email...

21/04/2026

Audio Systems Get Boost From Cloud and AI

Share Copy link Facebook X Linkedin Bluesky Email...

21/04/2026

Layercake Deepens Bitmovin Integration to Power End-to-End Media Orchestration with Streamcake

Layercake Deepens Bitmovin Integration to Power End-to-End Media Orchestration w...