skip to Main Content

Flutter VLC Player with options

import 'package:flutter/material.dart'; import 'package:flutter_vlc_player/flutter_vlc_player.dart'; class Home extends StatefulWidget { @override _ExampleVideoState createState() => _ExampleVideoState(); } class _ExampleVideoState extends State<Home> { final VlcPlayerController controller = new VlcPlayerController.network(url); @override Widget build(BuildContext context) { return Scaffold( body: SizedBox( height: 100, width: 40, child:…

VIEW QUESTION

How to use VLC as a live Streaming server?

I'm working on android app which can stream video to Facebook via compiled VLC-library. After recent changes in Facebook policy https://developers.facebook.com/blog/post/v2/2019/04/16/live-video-uploads-rtmps/ VLC stopped to stream video. There is message in the log: standard stream out: no suitable sout access module…

VIEW QUESTION
Back To Top
Search