You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/media-services/latest/manage-streaming-endpoints-howto.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,6 +39,7 @@ Review:
39
39
## Use the Azure portal
40
40
41
41
1. Sign in at the [Azure portal](https://portal.azure.com/).
42
+
1. Navigate to your Azure Media Services account.
42
43
1. On the left, select **Streaming Endpoints**.
43
44
1. Select the streaming endpoint you want to start, click **Start**.
44
45
@@ -52,7 +53,7 @@ if (streamingEndpoint.resourceState() != StreamingEndpointResourceState.RUNNING)
52
53
}
53
54
```
54
55
55
-
The samples [in this repository](https://docs.microsoft.com/samples/azure-samples/media-services-v3-dotnet/azure-media-services-v3-samples-using-net/) shows how to start the default streaming endpoint with .NET.
56
+
See the complete [Java code sample](https://github.com/Azure-Samples/media-services-v3-java/blob/master/DynamicPackagingVODContent/StreamHLSAndDASH/src/main/java/sample/StreamHLSAndDASH.java#L126).
56
57
57
58
## Use the .NETSDK
58
59
@@ -67,7 +68,7 @@ if (streamingEndpoint != null)
67
68
}
68
69
```
69
70
70
-
The samples [in this repository](https://docs.microsoft.com/samples/azure-samples/media-services-v3-java/azure-media-services-v3-samples-using-java/) shows how to start the default streaming endpoint with Java.
71
+
See the complete [.NET code sample](https://github.com/Azure-Samples/media-services-v3-dotnet/blob/master/DynamicPackagingVODContent/StreamHLSAndDASH/Program.cs#L112).
71
72
72
73
## UseCLI
73
74
@@ -93,7 +94,7 @@ For more information, see:
93
94
*The [start a StreamingEndpoint](https://docs.microsoft.com/rest/api/media/streamingendpoints/start) reference documentation.
94
95
*Starting a streaming endpoint is an asynchronous operation.
95
96
96
-
For details on how to monitor a long-running operations see[Long-running operations](media-services-apis-overview.md)
97
+
For details on how to monitor a long-running operations see[Long-running operations](media-services-apis-overview.md)
97
98
*This [Postman collection](https://github.com/Azure-Samples/media-services-v3-rest-postman/blob/master/Postman/Media%20Services%20v3.postman_collection.json) contains examples of multiple REST operations including on how to start a streaming endpoint.
0 commit comments