kannagi0303 / yt-dlp-gui

Windows GUI for yt-dlp
MIT License
1.17k stars 82 forks source link

Feature Request: About subtitles, chapters and metadata #72

Open Rodo094 opened 1 year ago

Rodo094 commented 1 year ago

If it's not too much to ask, you could add the functions:

kannagi0303 commented 1 year ago

Hello, thank you for using my GUI.

short answer I can implement all the points you mentioned.

  1. In terms of functionality, I need to spend more time thinking about how to design the UI and maintain a simple user interface and workflow.

  2. As far as the information available to me, automatic subtitles are included and can be downloaded or converted into specified subtitle formats to some extent. Like point 1, the various language subtitles provided by YouTube plus the number of formats for each subtitle require good display and operation methods, which also require time to think about.

  3. Adding chapters is possible, but considering the packaging format, I'm not sure if some formats require embedding chapters would deviate from standardization, which must be tested. Alternatively, you can suggest or provide the format you are accustomed to, which can give me a clearer and more specific target.

  4. Adding metadata to videos is also feasible, but there are also several types of formats, and I don't have much idea about what information should be included in the metadata. You can also provide some items for me to refer to.

I hope this answers your questions.

kannagi0303 commented 1 year ago

Hello,

I have added a feature that allows users to save subtitles in other formats and embed chapter markers within videos or audio. As for the metadata section, I did not receive a more detailed explanation from you, so I'm not sure what your requirements are.

Regarding multiple subtitles and all subtitles, I don't have a better solution at the moment. Please understand.

The new version has undergone significant changes and may have some rough edges.

If you're interested, you can try it out and see how it works.

EnekoT2001 commented 11 months ago

would totally love to have the option to download more than 1 subtitle tbh, the ui could have a drop down checkbox list (similar to streamfab) to let you choose which ones you want, also, adding a setting in options to automatically pre-select X languages/autogenerated would be very useful as well. I understand doing all this would be a lot of work but it'd help out with content archival a lot. Even without this your GUI is amazing, I just found it and I'll be using this instead of anything else moving forward, thank you so much!

gitdine commented 10 months ago

Hello,

I have added a feature that allows users to save subtitles in other formats and embed chapter markers within videos or audio. As for the metadata section, I did not receive a more detailed explanation from you, so I'm not sure what your requirements are.

Regarding multiple subtitles and all subtitles, I don't have a better solution at the moment. Please understand.

The new version has undergone significant changes and may have some rough edges.

If you're interested, you can try it out and see how it works.

Metadata can be embedded into the video file with this simple yt-dlp command: --add-metadata Should be easy to implement. I've tried other GUIs which have metadata option, but your one is superior in every way except for this missing feature.

kannagi0303 commented 10 months ago

@gitdine

If you are willing, you can use the Configuration method.

Simply create a text file and add "--add-metadata" to it. Then, select it in the GUI, and it will work

gitdine commented 10 months ago

@gitdine

If you are willing, you can use the Configuration method.

Simply create a text file and add "--add-metadata" to it. Then, select it in the GUI, and it will work

Didn't know about this, I'll use it. Thanks.