Coder Social home page Coder Social logo

flash-dl's People

Contributors

kimmax avatar xivsolutions avatar

Watchers

 avatar  avatar  avatar

flash-dl's Issues

Download playlist

Unable to download playlist

Error:The remote server returned an error: (400) Bad Request.

Audio Extract

public bool CanExtractAudio { get { return this.VideoType == VideoType.Flash; } }

So only flash is extractable...
Guess this might be a problem if or when youtube decides to completely drop their flashsupport.

Does it support to extraction sound from .mp4?

Mirgrate flash-dl over to SYMM Backend

As you may know I'm the developer of SYMM.
SYMM is split in parts, the biggest ones are 1) Frontends and 2) Backends.
So I was thinking why reinvent the wheel here?
My idea is to take all your frontend work and replace your backend (You don't really have one yet, it's all tied together) and build it on top of my backend.
Why would you wan't to do this?
You got all the features from my backend (Faster audio conversation, support for high quality videos, event based framework, Soonβ„’ an API Proxy), I got your console based frontend.
Don't understand me wrong, I don't want you to throw away your code, just replace parts of it with my backend, functionality and GUI won't change for you.
Let me know what you think and ask what you want to know :D

Streaming?

Hello @Kimmax,

How would I stream without using the API key is that possible or is the API Key required?

Features and Suggestions

Below are ideas and feature request i have in mind πŸ‘

  • Search (gives ability for user to search via prompt command:search [name] return list of results)
  • Pause command ability to pause download
  • Cancel command ability to cancel download
  • Add some color (error, info and result colors)
  • Settings (ability to set video res, etc) save it to config file such as xml user can edit it from prompt

ProgressBar

Re-sizing console causes progressbar to duplicate it self...

progress

AppendText idea

What do you think of below for color and text handling i have implemented this in my other project

private void AppendText(string message, Color color)
        {
            AppendText("System", message, color);
        }

        private void AppendText(string sender, string message)
        {
            AppendText(sender, message, Colors.Black);
        }

        private void AppendText(string sender, string message, Color color)
        {
            var senderTextRange = new TextRange(TextBoxConsole.Document.ContentEnd, TextBoxConsole.Document.ContentEnd)
            {
                Text = string.Format("{0}: {1}", sender, message)
            };
            // Colorize the sender and make it bold
            senderTextRange.ApplyPropertyValue(TextElement.ForegroundProperty, new SolidColorBrush(color));
            senderTextRange.ApplyPropertyValue(TextElement.FontWeightProperty, FontWeights.Bold);

            // Add a new line and reset styles
            var resetTextRange = new TextRange(TextBoxConsole.Document.ContentEnd, TextBoxConsole.Document.ContentEnd)
            {
                Text = Environment.NewLine
            };
            resetTextRange.ApplyPropertyValue(TextElement.FontWeightProperty, FontWeights.Normal);

            // Scroll to end of chat text if ScrollLock isn't on
            var scrollLock = (((ushort)GetKeyState(0x91)) & 0xffff) != 0;
            if (!scrollLock)
            {
                TextBoxConsole.ScrollToEnd();
            }
        }

Stream audio > library

Love this feature, Would be cool if we could create our own library we you can >add [link] a video link to a library and when we view our library we can choose which song we want to listen too πŸ‘

can even have have sub libraries like so library> sublib``Rock>Display rock genre

Just a idea πŸ‘

Repro Transfer

Hi @Kimmax Please remove Flash-dl from your side so I can transfer it over to you I no longer want part of it and besides 99% of the work is yours.

Command Handling

Bugs & Features

- [x] Method names are a mess currently, need to fix that on the command caller - [x] Have two different command files "DefaultCommand" and "Youtube" Default command must contain basic commands such as "clear", "quit" and "help"

Settings

Ideas of having console setting such as

General Settings

- Setting API key - Save path

Video Settings

- Setting Video quality to download ....

AudioSettings

- Setting Audio quality to download

Just basic concept ofcause there are various other settings. All settings must be able to set in console

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.