From debianlists at actiu.net Thu Feb 1 19:19:00 2024 From: debianlists at actiu.net (Narcis Garcia) Date: Thu, 1 Feb 2024 20:19:00 +0100 Subject: Unable to get Kdenlive to work - In-Reply-To: <000c01da43b0$b40c21d0$1c246570$@talktalk.net> Message-ID: <23756625-95b9-4ed7-935d-b033c91b4627@actiu.net> Maybe in "bin" subfolder. El 10/1/24 a les 11:35, Roger Hoodless ha escrit: > The program is visible, in C/programs folder, but no desktop icon has > been created, and there appears to be only a .exe file for uninstall, > not for install. > > Please advise how to get the program to run – See screen shot below - > Regards Roger > -- Narcis Garcia __________ I'm using this dedicated address because personal addresses aren't masked enough at this mail public archive. Public archive administrator should remove and omit any @, dot and mailto combinations against automated addresses collectors. From eugen.mohr at gmx.net Thu Feb 1 19:37:02 2024 From: eugen.mohr at gmx.net (Eugen Mohr) Date: Thu, 1 Feb 2024 20:37:02 +0100 Subject: Help for more effective use In-Reply-To: References: Message-ID: Hi Yes, this is possible. Click on the Ripple tool (icon: <-][->, https://docs.kdenlive.org/en/cutting_and_assembling/editing.html#ripple-tool).Select the clip you want to cut. Move the playhead on the position on the clip you want to cut. Hit either “(” for cut the left side or “)” cut the right side and the space get automatically removed. Eugen Am 29.01.2024 um 16:14 schrieb özgür tarık özcan: > Hello, I have been using Windows for a long time, but now I have > switched to Linux. I've been editing with Premier Pro since I became a > broadcaster. Now I started using kden live. But at one point I had > difficulty. When you press the Q key after cutting a video in Adobe, > the video is cut backwards and deleted. When you press the W key, the > video is cut forward and deleted. Is there a way to speed up our work > so that the process is completed in one go without any gaps? because I > couldn't manage to do this with shortcuts. Cutting video in 3 steps > takes too much time. Is there a feature in this program that allows > you to delete unwanted parts of the video forward or backward with a > single cut, just like in Adobe, and at the same time close the gap > with any key? I would like your help. -------------- next part -------------- An HTML attachment was scrubbed... URL: From snd.noise at gmail.com Fri Feb 9 18:32:09 2024 From: snd.noise at gmail.com (farid abdelnour) Date: Fri, 9 Feb 2024 15:32:09 -0300 Subject: =?UTF-8?Q?Kdenlive_Caf=C3=A9_is_tonight?= Message-ID: Don't forget that the #Kdenlive Café is tonight at 8PM UTC (9PM CET). Come chat with the team! Join us at: https://meet.kde.org/b/far-twm-ebr -- 1111.1010.r.i.1101|n.o.i.s.1110|i.m.1010.g.1110|مقاومة fsf member #5439 usuario GNU/Linux #471966 |_|0|_| |_|_|0| |0|0|0| gunga tempoecoarte atelier-labs rede mocambos -------------- next part -------------- An HTML attachment was scrubbed... URL: From 0 at psycoti.ca Thu Feb 8 00:34:40 2024 From: 0 at psycoti.ca (Christopher Vollick) Date: Wed, 7 Feb 2024 19:34:40 -0500 Subject: Code Question: Capture Folder Settings Message-ID: Hey folks! Unsure if there are developers on this list, but figured I'd ask. I'm looking at the code that picks which directory a capture is saved to, and I wanted to make sure I understand what's already there, and the intention of it, before I make changes. I'm going to be basing the line numbers off of current master which is: bbc8cc3d47341caa13a0578f8dd4e516e1810885 Ok! So first up we have src/monitor/recmanager.cpp and src/capture/mediacapture.cpp, which seem pretty similar, but different. I know that audio record tracks go through mediacapture, and the code for mediacapture seems to imply it can handle both audio and video captures, whereas recmanager seems to only do video, but other than that I don't know the difference between them. Secondly, there are two sets of settings in the "Environment" section of the settings panel, under "Default Folders". The labels they have are "Capture folder" and "Folder for rendering, titles, scripts", but in the code they're called "capturetoprojectfolder" and "videotodefaultfolder" Both of them support the same options: 0: Default folder 1: Project folder 2: Custom folder Where custom folder is specified in its own field, and in the code is called "capturefolderurl" and "videofolderurl" respectively. So! Code! Both mediacapture and recmanager have similar code that looks like: `mediacapture.cpp:446` if (KdenliveSettings::capturetoprojectfolder() < 2) { captureFolder = QDir(pCore->getProjectFolderName(audioCapture)); } else { captureFolder = QDir(KdenliveSettings::capturefolder()); } `recmanager:183` if (KdenliveSettings::capturetoprojectfolder() < 2) { captureFolder = QDir(pCore->getProjectFolderName()); } else { captureFolder = QDir(KdenliveSettings::capturefolder()); } So basically, if capture is set to custom we use the custom one, otherwise we call `getProjectFolderName` to figure out where to put this thing. The only difference is that mediacapture sometimes only has audio, so there's a bool to tell it if it's audio only. The core method just bounces to `src/doc/kdenlivedoc.cpp:790`: `KdenliveDoc::projectDataFolder` So right off the bat we have an if on that `folderForAudio` bool. In fact the structure of the code looks like: if (folderForAudio) { // Logic A, where every branch has a return } // Logic B, where every branch has a return Which basically means this is actually two methods, just given one name and a bool to pick between them. There is zero logic or variables in common between Logic A and Logic B. But the two bits are very _similar_ in what they do, even if they don't share anything. They basically both say: 1. If custom, then return custom. 2. If the project file doesn't exist yet, then return the default project folder if we're using the project folder, otherwise the default video folder. 3. If we're using the project folder, return the project folder 4. Return the default video folder The main difference is that the Logic A version (folderForAudio == true) is using the "capture" settings, and Logic B (folderForAudio == false) is using the other one, "videotodefaultfolder" aka "Folder for rendering, titles, scripts". The only other quirk is that the video path has a step 1.5 which says "If a newPath has been given to me, and I'm supposed to be picking the project folder, return newPath instead". As far as I can tell this is only used once in all the code, somewhere in the render dialog, but I'm not really sure why. By coming in after step 1 and before the others, it seems to mean "if you're custom just pick custom and ignore newPath, if you're project then use newPath, and if you're system default then use system default and ignore newPath", but I don't know why, and the audio path doesn't do that. Anyway! So I have a few things that I find weird, but I don't know if they're bugs or intended. The first is that in both recmanager and mediacapture we have that `if` on the outside, before we call `getProjectFolderName`, which checks if `capturetoprojectfolder` is set to Custom (2). If so it uses that. But inside that method, if it's audio it uses the value of `capturetoprojectfolder`, but if it's video it uses videotodefaultfolder's value instead. Which means if I have "Capture folder" set to custom, and "Folder for rendering, titles, scripts" set to project folder, then it will save both audio and video captures to my custom folder. But if I have "Capture folder" set to either default or project folder, then audio captures will use that setting, but video captures will fall through and use the other setting, potentially ending up in a different place. That feels like a bug to me, but I don't know enough about the intent to be sure. The second question is really just whether or not video captures _should_ be using a different path from audio captures, specifically the one labeled "Folder for rendering, titles, scripts". There are other parts of the code that use that setting (and not the capture settings) for things like titles, etc. But was it ever intentional that recmanager and mediacapture would put video into that same folder? I figure there are three options: 1. As-is. Audio capture should go into capture folder, video capture should go into video folder. Maybe the custom folder thing is a bit of a mixup, or maybe it's not, but the broad strokes are intended. 2. Both audio and video capture should use the capture folder settings, whereas other things like titles should use the video folder 3. There should be a third set of options. One for audio capture, one for video capture, and one for renders. Video capture shouldn't necessarily be put in the same place as titles. That's the current state of things. Now, in case it might change your mind, what I'm planning on _changing_ is making a fourth option for audio captures that puts things in a custom *subfolder* of the project folder. As in "/voiceover" or whatever the user picks. So then I wonder how video captures should handle this new plan. Should they go into the capture subfolder now? Should that only be for audio captures? Or should they have a third set of options that allows them to _also_ be put into their _own_ subfolder of the project dir. I don't really care too much, because I don't make video captures, so it doesn't affect me one way or the other, but I've sorta gotta pick _something_, whether I choose to include them where it is currently excluding them, or if I choose to continue to exclude them even if it's a bit weird. Those are my thoughts. What are yours? From dincersaran at gmail.com Thu Feb 29 19:45:41 2024 From: dincersaran at gmail.com (dincersaran at gmail.com) Date: Thu, 29 Feb 2024 22:45:41 +0300 Subject: support Message-ID: Hello; I started using your Kdenlive program. I would like to thank everyone who contributed. Even though I don't have programming; I can contribute by translating the user menus or documents of the programs. You can send me the texts you want translated into Turkish. Kind regards Dinçer SARAN -------------- next part -------------- An HTML attachment was scrubbed... URL: