WIP: Sequencer: Add file manager #121952
No reviewers
Labels
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset System
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Code Documentation
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Viewport & EEVEE
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Asset Browser Project
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Module
Viewport & EEVEE
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Severity
High
Severity
Low
Severity
Normal
Severity
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No project
No Assignees
4 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: blender/blender#121952
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "(deleted):gangneron-patch-5"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The PR add file manager for Sequencer. The goal is to be able to sort our files more easily to facilitate workflow with a large number of files.
I think divide the manager in 4 or 5 parts : videos, pictures, sound, text and why not effect.
This is in the form of a tab which displays all the media with the possibility of clicking on images to see only the images. Videos to see only the videos...
design task: #78990
Note for reviewers: the added file is sequencer_manager.cc and the modified file is the Cmake file of the space_sequencer with the addition of the sequencer_manager.cc file, the rest of the changes are due to an attempt to merge
It's update of #121949
This PR initially contained an old project, that's why there are 3 fixes.
Add UI
Add ID for the files
Drag / drop
Files in cache / memory
@ -73,6 +75,16 @@ if(WITH_AUDASPACE)
add_definitions(-DWITH_AUDASPACE)
endif()
if(WITH_TBB)
these lines added themselves
@ -46,6 +47,7 @@ set(SRC
sequencer_intern.hh
sequencer_quads_batch.hh
sequencer_scopes.hh
this line added itself
Thanks for patch. Unfortunately, I don't think I can accept this, due to multiple reasons:
file_selector_panel_register()
is not called from anywhere, nor are operators registeredThe goal of #78990, is to have ID's representing media files that can be used by multiple strips. In addition these ID's would have separate preview area and start and end frames can be defined there. To manage these ID's a media management area would be created, where user can drag and drop assets(media).
This task pretty much means a whole new editor would be added for Blender dedicated to handling these assets. So it would be a bit more complicated than just a panel.
Not sure if there are some changes or whole files lost here. In any case, I would be OK with you working on this task, but it would be much much more work than this patch.
Sequencer: Add file managerto WIP: Sequencer: Add file managerok so i should create new editor
ok so i create na new editor ? I thought you just wanted an additional tab in the VSE, I added id management for example id = 1 for videos, id = 2 for images... I suppose you also need to add a python file specific to handle this.
I guess I should have said editor type, but this is not very clear from available design. First of all a more detailed plan would have to be created and agreed on.
I don't think the code you have added in this context even compiles, if it would it would do nothing still. I am referring to
struct ID
defined inDNA_ID.h
In any case, I was bit confused by this PR, so I have looked at your previous submissions, and I think a simpler fixes or features would be better suited to you. This one is fairly complicated and I think it would be best if it's undertaken by skilled developer.
my idea is that it looks like the video. For the moment I have the interface. I know we will need to assign IDs to each strip so that they can be used by the timeline. Drag and drop shouldn't be the most complicated element to set up. For the rest, the files must be put in memory or cache because they must be stored. This is surely the most complex element. It will possibly remain to integrate a preview of the files if desired. If the video system suits you I can continue development. For information, the software in the video is called Openshoot video editor and we were inspired by certain parts of the code because it is open source.
I await your opinion
After have add id i think use
DNA_ID.h
so i change actual system forstruct ID
The complexity of this project is quite high. We would not be able to efficiently walk you through the required steps to implement it.
Is great to see your desire to help the Blender project, but I strongly suggest to start with something smaller to get a better understanding of the programming language and Blender architecture.
@iss it's good for me
WIP: Sequencer: Add file managerto Sequencer: Add file managerMaybe you could add some screenshots and explanations of what your patch does in your words?
The design task is not about file browser, but about implementing media management and cutin-cutout workflow.
Once again, this is quite complex project, and we will not be able to walk someone new to Blender through it. If you want to help Blender development, there are plenty of things to do.
Also, please value our time, and do not request to review code which doesn't even compile.
Sequencer: Add file managerto WIP: Sequencer: Add file managerPull request closed