chewie icon indicating copy to clipboard operation
chewie copied to clipboard

The video player for Flutter with a heart of gold

Results 275 chewie issues
Sort by recently updated
recently updated
newest added

When I run `example/` in Android and iOS, play video and press fullscreen toggle, the video continues playing, but when I do the same in Web platform the video always...

@diegotori using this to change the progress bar color but it is not changing it showing purple color by default . chewieController = ChewieController( videoPlayerController: controller, autoPlay: false, looping: true,...

Whether there is a handling api for failure to initialize videos in a particular format

Hello. I test this lib with video_player lib for flutter web, but when i open (or close) a video in fullscreen, an bug occurred. Follow the video. https://user-images.githubusercontent.com/55509616/123291798-d40c2900-d4e8-11eb-8ca1-c32015e8fa8f.mov

I have tried to use this player to play [.m3u8](url) video but it gives error `Caused by: androidx.media3.exoplayer.source.UnrecognizedInputFormatException: None of the available extractors (FlvExtractor, FlacExtractor, WavExtractor, FragmentedMp4Extractor, Mp4Extractor, AmrExtractor, PsExtractor,...

On web, autoplay does not work if the user has not interacted with the page yet. This example shows a broken video without the ability to play it: ```dart import...

Picking up on this issue #648 I have disabled subtitles by default and also given the option to fully disable subtitles in the chewiecontroller

import 'package:flutter/material.dart'; import 'package:chewie/chewie.dart'; import 'package:video_player/video_player.dart'; class VideoView extends StatefulWidget { final String url; final bool autoPlay; final bool looping; final double aspectRatio; const VideoView({super.key, required this.url, this.autoPlay=false, this.looping=false, this.aspectRatio=16/9,});...

Hi, I am simulating slow network and getting timeout exeption. Is there a way to set timeout duration? > E/ExoPlayerImplInternal(13919): Playback error > E/ExoPlayerImplInternal(13919): androidx.media3.exoplayer.ExoPlaybackException: Source error > E/ExoPlayerImplInternal(13919): at...

In Flutter Web the mouse over overlay stays for 3 seconds and is a black54. I'd like to see an ability to remove it and just show the controls on...