Advertisement
anushervon111

Untitled

Jun 29th, 2023 (edited)
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 1.37 KB | None | 0 0
  1. import 'package:flutter/material.dart';
  2. import 'package:http/http.dart' as http;
  3. import 'dart:convert';
  4.  
  5. class MyWidget extends StatelessWidget {
  6.   Future<int> analyzeVideo(String videoUrl) async {
  7.     final url = Uri.parse('http://10.91.54.218:80/analyze');
  8.     final headers = {'Content-Type': 'application/json'};
  9.     final body = jsonEncode({'url': videoUrl});
  10.  
  11.     final response = await http.post(url, headers: headers, body: body);
  12.     if (response.statusCode == 200) {
  13.       final data = json.decode(response.body);
  14.       return data['id'];
  15.     }
  16.     else if (response.statusCode == 404) {
  17.       throw Exception('not found');
  18.     } else {
  19.       throw Exception('Failed to analyze video');
  20.     }
  21.   }
  22.  
  23.   @override
  24.   Widget build(BuildContext context) {
  25.     return FutureBuilder<int>(
  26.       future: analyzeVideo('https://youtu.be/ExPFnu8Dm40'),
  27.       builder: (context, snapshot) {
  28.         if (snapshot.connectionState == ConnectionState.waiting) {
  29.           return CircularProgressIndicator(
  30.             color: Colors.amber ,
  31.           );
  32.         } else if (snapshot.hasError) {
  33.           return Text('Error: ${snapshot.error}');
  34.         } else if (snapshot.hasData) {
  35.           final videoId = snapshot.data!;
  36.           return Text('Video ID: $videoId');
  37.         } else {
  38.           return Text('Video analysis failed');
  39.         }
  40.       },
  41.     );
  42.   }
  43. }
  44.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement