Skip to content

Commit 7605bec

Browse files
committed
1678688, initial commit to test functionality.
1 parent 3c9030f commit 7605bec

File tree

8 files changed

+93
-58
lines changed

8 files changed

+93
-58
lines changed

.openpublishing.redirection.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1765,6 +1765,26 @@
17651765
"redirect_url": "/azure/cognitive-services/bing-news-search/quickstarts/client-libraries?pivots=programming-language-python",
17661766
"redirect_document_id": false
17671767
},
1768+
{
1769+
"source_path": "articles/cognitive-services/Bing-Video-Search/quickstarts/sdk-csharp-quickstart.md",
1770+
"redirect_url": "/azure/cognitive-services/bing-video-search/quickstarts/client-libraries?pivots=programming-language-csharp",
1771+
"redirect_document_id": false
1772+
},
1773+
{
1774+
"source_path": "articles/cognitive-services/Bing-Video-Search/quickstarts/sdk-java-quickstart.md",
1775+
"redirect_url": "/azure/cognitive-services/bing-video-search/quickstarts/client-libraries?pivots=programming-language-java",
1776+
"redirect_document_id": false
1777+
},
1778+
{
1779+
"source_path": "articles/cognitive-services/Bing-Video-Search/quickstarts/sdk-node-quickstart.md",
1780+
"redirect_url": "/azure/cognitive-services/bing-video-search/quickstarts/client-libraries?pivots=programming-language-javascript",
1781+
"redirect_document_id": false
1782+
},
1783+
{
1784+
"source_path": "articles/cognitive-services/Bing-Video-Search/quickstarts/sdk-python-quickstart.md",
1785+
"redirect_url": "/azure/cognitive-services/bing-video-search/quickstarts/client-libraries?pivots=programming-language-python",
1786+
"redirect_document_id": false
1787+
},
17681788
{
17691789
"source_path": "articles/virtual-machines/linux/classic/rdma-cluster.md",
17701790
"redirect_url": "/azure/virtual-machines/linux/sizes-hpc#rdma-capable-instances",

articles/cognitive-services/Bing-Video-Search/quickstarts/sdk-csharp-quickstart.md renamed to articles/cognitive-services/Bing-Video-Search/includes/quickstarts/video-search-client-csharp.md

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,31 @@
11
---
2-
title: "Quickstart: Search for videos using the SDK for C# - Bing Video Search"
2+
title: Bing Video Search C# client library quickstart
33
titleSuffix: Azure Cognitive Services
4-
description: Use this quickstart to send video search requests using the Bing Video Search SDK for C#.
54
services: cognitive-services
65
author: aahill
76
manager: nitinme
8-
97
ms.service: cognitive-services
10-
ms.subservice: bing-video-search
11-
ms.topic: quickstart
12-
ms.date: 12/09/2019
8+
ms.topic: include
9+
ms.date: 03/19/2020
1310
ms.author: aahi
1411
---
1512

16-
# Quickstart: Perform a video search with the Bing Video Search SDK for C#
17-
18-
Use this quickstart to begin searching for news with the Bing Video Search SDK for C#. While Bing Video Search has a REST API compatible with most programming languages, the SDK provides an easy way to integrate the service into your applications. The source code for this sample can be found on [GitHub](https://github.com/Azure-Samples/cognitive-services-dotnet-sdk-samples/tree/master/BingSearchv7/BingVideoSearch) with additional annotations, and features.
13+
Use this quickstart to begin searching for news with the Bing Video Search client library for C#. While Bing Video Search has a REST API compatible with most programming languages, the client library provides an easy way to integrate the service into your applications. The source code for this sample can be found on [GitHub](https://github.com/Azure-Samples/cognitive-services-dotnet-sdk-samples/tree/master/BingSearchv7/BingVideoSearch) with additional annotations, and features.
1914

2015
## Prerequisites
2116

2217
* Any edition of [Visual Studio 2017 or later](https://visualstudio.microsoft.com/downloads/).
2318
* The Json.NET framework, available [as a NuGet package](https://www.nuget.org/packages/Newtonsoft.Json/).
2419

25-
To add the Bing Video Search SDK to your project, select **Manage NuGet Packages** from **Solution Explorer** in Visual Studio. Add the `Microsoft.Azure.CognitiveServices.Search.VideoSearch` package.
20+
To add the Bing Video Search client library to your project, select **Manage NuGet Packages** from **Solution Explorer** in Visual Studio. Add the `Microsoft.Azure.CognitiveServices.Search.VideoSearch` package.
2621

2722
Installing the [[NuGet Video Search SDK package]](https://www.nuget.org/packages/Microsoft.Azure.CognitiveServices.Search.VideoSearch/1.2.0) also installs the following dependencies:
2823

2924
* Microsoft.Rest.ClientRuntime
3025
* Microsoft.Rest.ClientRuntime.Azure
3126
* Newtonsoft.Json
3227

33-
[!INCLUDE [cognitive-services-bing-video-search-signup-requirements](../../../../includes/cognitive-services-bing-video-search-signup-requirements.md)]
28+
[!INCLUDE [cognitive-services-bing-video-search-signup-requirements](~/includes/cognitive-services-bing-video-search-signup-requirements.md)]
3429

3530

3631
## Create and initialize a project

articles/cognitive-services/Bing-Video-Search/quickstarts/sdk-java-quickstart.md renamed to articles/cognitive-services/Bing-Video-Search/includes/quickstarts/video-search-client-java.md

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,26 @@
11
---
2-
title: "Quickstart: Search for videos using the SDK for Java - Bing Video Search"
2+
title: Bing Video Search Java client library quickstart
33
titleSuffix: Azure Cognitive Services
4-
description: Use this quickstart to send video search requests using the Bing Video Search SDK for Java.
54
services: cognitive-services
65
author: aahill
76
manager: nitinme
8-
97
ms.service: cognitive-services
10-
ms.subservice: bing-video-search
11-
ms.topic: quickstart
12-
ms.date: 12/09/2019
8+
ms.topic: include
9+
ms.date: 03/19/2020
1310
ms.author: aahi
1411
---
15-
# Quickstart: Perform a video search with the Bing Video Search SDK for Java
1612

17-
Use this quickstart to begin searching for news with the Bing Video Search SDK for Java. While Bing Video Search has a REST API compatible with most programming languages, the SDK provides an easy way to integrate the service into your applications. The source code for this sample can be found on [GitHub](https://github.com/Azure-Samples/cognitive-services-java-sdk-samples/tree/master/Search/BingVideoSearch), with additional annotations, and features.
13+
Use this quickstart to begin searching for news with the Bing Video Search client library for Java. While Bing Video Search has a REST API compatible with most programming languages, the client library provides an easy way to integrate the service into your applications. The source code for this sample can be found on [GitHub](https://github.com/Azure-Samples/cognitive-services-java-sdk-samples/tree/master/Search/BingVideoSearch), with additional annotations, and features.
1814

1915
## Prerequisites
2016

2117
* The [Java Development Kit(JDK)](https://www.oracle.com/technetwork/java/javase/downloads/jdk11-downloads-5066655.html)
2218

2319
* The [Gson library](https://github.com/google/gson)
2420

25-
[!INCLUDE [cognitive-services-bing-video-search-signup-requirements](../../../../includes/cognitive-services-bing-video-search-signup-requirements.md)]
21+
[!INCLUDE [cognitive-services-bing-video-search-signup-requirements](~/includes/cognitive-services-bing-video-search-signup-requirements.md)]
2622

27-
Install the Bing Video Search SDK dependencies by using Maven, Gradle, or another dependency management system. The Maven POM file requires the following declaration:
23+
Install the Bing Video Search client library dependencies by using Maven, Gradle, or another dependency management system. The Maven POM file requires the following declaration:
2824

2925
```xml
3026
<dependencies>

articles/cognitive-services/Bing-Video-Search/quickstarts/sdk-node-quickstart.md renamed to articles/cognitive-services/Bing-Video-Search/includes/quickstarts/video-search-client-javascript.md

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,30 @@
11
---
2-
title: "Quickstart: Search for videos using the SDK for Node.js - Bing Video Search"
2+
title: Bing Video Search JavaScript client library quickstart
33
titleSuffix: Azure Cognitive Services
4-
description: Use this quickstart to send video search requests using the Bing Video Search SDK for Node.js
54
services: cognitive-services
65
author: aahill
76
manager: nitinme
8-
97
ms.service: cognitive-services
10-
ms.subservice: bing-video-search
11-
ms.topic: quickstart
12-
ms.date: 12/09/2019
8+
ms.topic: include
9+
ms.date: 03/19/2020
1310
ms.author: aahi
1411
---
1512

16-
# Quickstart: Perform a video search with the Bing Video Search SDK for Node.js
17-
18-
Use this quickstart to begin searching for news with the Bing Video Search SDK for Node.js. While Bing Video Search has a REST API compatible with most programming languages, the SDK provides an easy way to integrate the service into your applications. The source code for this sample can be found on [GitHub](https://github.com/Azure-Samples/cognitive-services-node-sdk-samples/blob/master/Samples/videoSearch.js). It contains more annotations and features.
13+
Use this quickstart to begin searching for news with the Bing Video Search client library for JavaScript. While Bing Video Search has a REST API compatible with most programming languages, the client library provides an easy way to integrate the service into your applications. The source code for this sample can be found on [GitHub](https://github.com/Azure-Samples/cognitive-services-node-sdk-samples/blob/master/Samples/videoSearch.js). It contains more annotations and features.
1914

2015
## Prerequisites
2116

2217
- [Node.js](https://www.nodejs.org/)
2318

24-
To set up a console application using the Bing Video Search SDK:
19+
To set up a console application using the Bing Video Search client library:
2520
* Run `npm install ms-rest-azure` in your development environment.
2621
* Run `npm install azure-cognitiveservices-videosearch` in your development environment.
2722

28-
[!INCLUDE [cognitive-services-bing-video-search-signup-requirements](../../../../includes/cognitive-services-bing-video-search-signup-requirements.md)]
23+
[!INCLUDE [cognitive-services-bing-video-search-signup-requirements](~/includes/cognitive-services-bing-video-search-signup-requirements.md)]
2924

3025
## Create and initialize the application
3126

32-
1. Create a new JavaScript file in your favorite IDE or editor, and add a `require()` statement for the Bing Video Search SDK, and `CognitiveServicesCredentials` module. Create a variable for your subscription key.
27+
1. Create a new JavaScript file in your favorite IDE or editor, and add a `require()` statement for the Bing Video Search client library, and `CognitiveServicesCredentials` module. Create a variable for your subscription key.
3328

3429
```javascript
3530
const CognitiveServicesCredentials = require('ms-rest-azure').CognitiveServicesCredentials;

articles/cognitive-services/Bing-Video-Search/quickstarts/sdk-python-quickstart.md renamed to articles/cognitive-services/Bing-Video-Search/includes/quickstarts/video-search-client-python.md

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,31 @@
11
---
2-
title: "Quickstart: Search for videos using the SDK for Python - Bing Video Search"
2+
title: Bing Video Search Python client library quickstart
33
titleSuffix: Azure Cognitive Services
4-
description: Use this quickstart to send video search requests using the Bing Video Search SDK for Python
54
services: cognitive-services
65
author: aahill
76
manager: nitinme
8-
97
ms.service: cognitive-services
10-
ms.subservice: bing-video-search
11-
ms.topic: quickstart
12-
ms.date: 02/11/2020
8+
ms.topic: include
9+
ms.date: 03/19/2020
1310
ms.author: aahi
1411
---
1512

16-
# Quickstart: Perform a video search with the Bing Video Search SDK for Python
17-
18-
Use this quickstart to begin searching for news with the Bing Video Search SDK for Python. While Bing Video Search has a REST API compatible with most programming languages, the SDK provides an easy way to integrate the service into your applications. The source code for this sample can be found on [GitHub](https://github.com/Azure-Samples/cognitive-services-python-sdk-samples/blob/master/samples/search/video_search_samples.py) with additional annotations, and features.
13+
Use this quickstart to begin searching for news with the Bing Video Search client library for Python. While Bing Video Search has a REST API compatible with most programming languages, the client library provides an easy way to integrate the service into your applications. The source code for this sample can be found on [GitHub](https://github.com/Azure-Samples/cognitive-services-python-sdk-samples/blob/master/samples/search/video_search_samples.py) with additional annotations, and features.
1914

20-
[!INCLUDE [cognitive-services-bing-video-search-signup-requirements](../../../../includes/cognitive-services-bing-video-search-signup-requirements.md)]
15+
[!INCLUDE [cognitive-services-bing-video-search-signup-requirements](~/includes/cognitive-services-bing-video-search-signup-requirements.md)]
2116

2217
## Prerequisites
2318

2419
- [Python](https://www.python.org/) 2.x or 3.x
25-
- The Bing Video Search SDK for python
20+
- The Bing Video Search client library for python
2621

2722
It is recommended that you use a python [virtual environment](https://docs.python.org/3/tutorial/venv.html). You can install and initialize a virtual environment with the [venv module](https://pypi.python.org/pypi/virtualenv). Install virtualenv for Python 2.7 with:
2823

2924
```console
3025
python -m venv mytestenv
3126
```
3227

33-
Install the Bing Video Search SDK with:
28+
Install the Bing Video Search client library with:
3429

3530
```console
3631
cd mytestenv
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
title: 'Quickstart: Use the Bing Video Search client library'
3+
titleSuffix: Azure Cognitive Services
4+
description: The Video Search API offers client libraries that makes it easy to integrate search capabilities into your applications. Use this quickstart to start sending search requests, and get back results.
5+
services: cognitive-services
6+
author: aahill
7+
manager: nitinme
8+
zone_pivot_groups: programming-languages-set-ten
9+
10+
ms.service: cognitive-services
11+
ms.subservice: bing-video-search
12+
ms.topic: quickstart
13+
ms.date: 03/19/2020
14+
ms.author: aahi
15+
---
16+
# Quickstart: Use the Bing Video Search client library
17+
18+
::: zone pivot="programming-language-csharp"
19+
20+
[!INCLUDE [C# quickstart](../includes/quickstarts/video-search-client-library-csharp.md)]
21+
22+
::: zone-end
23+
24+
::: zone pivot="programming-language-java"
25+
26+
[!INCLUDE [Java quickstart](../includes/quickstarts/video-search-client-library-java.md)]
27+
28+
::: zone-end
29+
30+
::: zone pivot="programming-language-javascript"
31+
32+
[!INCLUDE [JavaScript quickstart](../includes/quickstarts/video-search-client-library-javascript.md)]
33+
34+
::: zone-end
35+
36+
::: zone pivot="programming-language-python"
37+
38+
[!INCLUDE [Python quickstart](../includes/quickstarts/video-search-client-library-python.md)]
39+
40+
::: zone-end

articles/cognitive-services/Bing-Video-Search/toc.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,8 @@
2727
href: quickstarts/ruby.md
2828
- name: SDK
2929
items:
30-
- name: Using C#
31-
href: quickstarts/sdk-csharp-quickstart.md
32-
- name: Using Node.js
33-
href: quickstarts/sdk-node-quickstart.md
34-
- name: Using Python
35-
href: quickstarts/sdk-python-quickstart.md
36-
- name: Using Java
37-
href: quickstarts/sdk-java-quickstart.md
30+
- name: Bing Video Search client libraries
31+
href: ./quickstarts/client-libraries.md
3832
- name: Tutorials
3933
items:
4034
- name: Build a single-page web app

articles/cognitive-services/Bing-Web-Search/index.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -148,16 +148,16 @@ conceptualContent:
148148
links:
149149
- text: Use C#
150150
itemType: quickstart
151-
url: ../Bing-Video-Search/quickstarts/sdk-csharp-quickstart.md
151+
url: ../video-search/quickstarts/client-libraries.md?pivots=programming-language-csharp
152152
- text: Use Java
153153
itemType: quickstart
154-
url: ../Bing-Video-Search/quickstarts/sdk-java-quickstart.md
155-
- text: Use Node.js
154+
url: ../video-search/quickstarts/client-libraries.md?pivots=programming-language-java
155+
- text: Use JavaScript
156156
itemType: quickstart
157-
url: ../Bing-Video-Search/quickstarts/sdk-node-quickstart.md
157+
url: ../video-search/quickstarts/client-libraries.md?pivots=programming-language-javascript
158158
- text: Use Python
159159
itemType: quickstart
160-
url: ../Bing-Video-Search/quickstarts/sdk-python-quickstart.md
160+
url: ../video-search/quickstarts/client-libraries.md?pivots=programming-language-python
161161
- text: Create a single page web-app
162162
itemType: tutorial
163163
url: ../Bing-Video-Search/tutorial-bing-video-search-single-page-app.md

0 commit comments

Comments
 (0)