Destiny-Ed / flutter_youtube_downloader

A flutter plugin for extracting and downloading youtube video ur
9 stars 13 forks source link

this plugin not working #3

Closed CARocha closed 3 years ago

CARocha commented 3 years ago

Hi, i try several link the youtube but not working only say Dowload link is bkoken or not available for download!! i used flutter version 1.22.6 any helps??

Destiny-Ed commented 3 years ago

I will check that later

On Sun, Jun 6, 2021, 06:45 Carlos A. Rocha @.***> wrote:

Hi, i try several link the youtube but not working only say Dowload link is bkoken or not available for download!! i used flutter version 1.22.6 any helps??

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/Destiny-Ed/flutter_youtube_downloader/issues/3, or unsubscribe https://github.com/notifications/unsubscribe-auth/AN4RXI2AYT3D6MJPEXTJ4JLTRMDPNANCNFSM46FPRPQQ .

Destiny-Ed commented 3 years ago

Make sure you remove any "..." Dots from the video title

On Sun, Jun 6, 2021, 10:31 Destiny Ed @.***> wrote:

I will check that later

On Sun, Jun 6, 2021, 06:45 Carlos A. Rocha @.***> wrote:

Hi, i try several link the youtube but not working only say Dowload link is bkoken or not available for download!! i used flutter version 1.22.6 any helps??

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/Destiny-Ed/flutter_youtube_downloader/issues/3, or unsubscribe https://github.com/notifications/unsubscribe-auth/AN4RXI2AYT3D6MJPEXTJ4JLTRMDPNANCNFSM46FPRPQQ .

CARocha commented 3 years ago

Hi, @Destiny-Ed yes i remove ... Dots the video title and this works, one question more, is posible back the path where the video saved? i will like saved and then play with flutter video_player like chewie in asset mode.

Destiny-Ed commented 3 years ago

Glad it worked for you. Concerning the video download part, they are saved in your phones Download directory. So you can find them there.

Or if there's any functionality you want the plugin to have just let me know

On Mon, Jun 7, 2021, 00:37 Carlos A. Rocha @.***> wrote:

Hi, @Destiny-Ed https://github.com/Destiny-Ed yes i remove ... Dots the video title and this works, one question more, is posible back the path where the video saved? i will like saved and then play with flutter video_player like chewie in asset mode.

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/Destiny-Ed/flutter_youtube_downloader/issues/3#issuecomment-855482173, or unsubscribe https://github.com/notifications/unsubscribe-auth/AN4RXIZGMTQTLJLZNOV3DT3TRQBFHANCNFSM46FPRPQQ .

CARocha commented 3 years ago

@Destiny-Ed thank it work very well, i try saved many video.

I have changed your example I have put 2 TextField one for name of video and other for link to video and change the function

Future downloadVideo(String link, String name) async { final result = await FlutterYoutubeDownloader.downloadVideo( link, "$name", 18); return result; }

and floatingActionButton a put this

floatingActionButton: FloatingActionButton( onPressed: (){ downloadVideo(_controller1.text,_controller2.text); }, child: const Icon(Icons.download_rounded), ),

and the videos are downloaded completely well.

Now what I want to do is when I put a link and the name touch download video, once I download it, it can be seen below in a video_player but there I am stuck

Thanks for answering, if you have an example of how to search the video by its name and be able to present it under the TextFields either with a future builder or something like that.

Cheers