An Azure video analytics service that uses AI to extract actionable insights from stored videos.
Hello Ronald van der Plas,
Greetings! Thanks for raising this question in the Q&A forum.
Since this is affecting multiple videos suddenly, only in the Sweden Central account, and the exact same files process fine in West Europe, this points to a backend processing issue on the Sweden Central region rather than anything wrong with your videos or your upload method. A video getting stuck partway through indexing (commonly around the 83 percent mark) usually means the transcription and audio analysis stages completed, but the request handed off to a downstream AI processing stage (such as OCR, labeling, or content moderation) is not completing or is queued behind a backend problem in that region.
Here is how to confirm this and work around the stuck videos.
- Check the processing state through the API rather than the portal
The portal progress bar does not always reflect the true backend state. Call the Get Video Index API to see the actual status and look for any error details:
GET https://api.videoindexer.ai/{location}/Accounts/{accountId}/Videos/{videoId}/Index?accessToken={token}
Look at the state field in the response. If it still shows Processing with no error, the job is genuinely stuck server side rather than failed with a code you can act on.
- Try deleting the stuck videos through the API, not the portal
The portal often blocks deletion while a video shows as indexing, but the Delete Video API call frequently succeeds even in that state:
DELETE https://api.videoindexer.ai/{location}/Accounts/{accountId}/Videos/{videoId}?deleteInsights=true&accessToken={token}
Setting deleteInsights=true also clears any partial insights so you can re-upload cleanly once the region issue is resolved.
- Avoid re-uploading the same videos repeatedly to Sweden Central for now
Since the same files succeed in West Europe, this confirms your files and pipeline are fine. Repeated retries in Sweden Central will likely just create more stuck jobs and consume indexing minutes unnecessarily until the regional issue clears.
- Check for an active service issue in that region
Look at the Azure Status page and your Service Health blade in the Azure portal (Home > Service Health > Service Issues) filtered to Sweden Central and the Video Indexer resource type. If there is an active advisory, it will usually explain the scope and expected resolution time.
- If deletion still fails or the issue continues, open an Azure Support ticket
Since this is very likely a platform side problem specific to the Sweden Central region rather than something you can fix from your side, raise a support request under the Video Indexer resource in the Azure portal (Help + Support > Create a support request). Include your account ID, a couple of affected video IDs, and the timestamps things started failing today, since that will let the product team correlate it with any known backend incident in that region.
If this answer helps you kindly accept the answer which will help others who have similar questions.
Best Regards,
Jerald Felix.