<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Set Proxy Subdirectory - Video Editing				            </title>
            <link>https://cinelerra-gg.org/ja/forum/help-video/set-proxy-subdirectory/</link>
            <description>The artists\&#039; meeting place for creative exchange and discussion.</description>
            <language>ja</language>
            <lastBuildDate>Sat, 14 Mar 2026 02:01:49 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>Answer to: Set Proxy Subdirectory</title>
                        <link>https://cinelerra-gg.org/ja/forum/help-video/set-proxy-subdirectory/#post-1830</link>
                        <pubDate>Fri, 23 Jul 2021 08:25:04 +0000</pubDate>
                        <description><![CDATA[Perhaps you can start from within CinGG; see
I am not familiar with scripting. It would be nice to be able to distinguish various proxy folders for various projects. For example:
project1: ...]]></description>
                        <content:encoded><![CDATA[<p>Perhaps you can start from within CinGG; see:<br />https://cinelerra-gg.org/download/CinelerraGG_Manual/Menu_Bar_Shell_Commands.html</p>
<p>I am not familiar with scripting. It would be nice to be able to distinguish various proxy folders for various projects. For example:</p>
<p>project1: proxy1<br />project2: proxy2<br />...</p>
<p>So recognize that you are inside Project1 and create the Proxy1 folder; if you open Project2 then you will create the Proxy2 folder, etc (without deleting Proxy1). Do you think it's possible to include it in your script?</p>]]></content:encoded>
						                            <category domain="https://cinelerra-gg.org/ja/forum/help-video/">Video Editing</category>                        <dc:creator>andreapaz</dc:creator>
                        <guid isPermaLink="true">https://cinelerra-gg.org/ja/forum/help-video/set-proxy-subdirectory/#post-1830</guid>
                    </item>
				                    <item>
                        <title>Answer to: Set Proxy Subdirectory</title>
                        <link>https://cinelerra-gg.org/ja/forum/help-video/set-proxy-subdirectory/#post-1828</link>
                        <pubDate>Thu, 22 Jul 2021 17:42:14 +0000</pubDate>
                        <description><![CDATA[This script works to move the JPEG Sequences into a &quot;proxy&quot; subdirectory. I have it added as a Thunar Custom Action, so it works for the time being.
#!/bin/bash

cd &quot;$1&quot;
mkdir proxy
fin...]]></description>
                        <content:encoded><![CDATA[<p>This script works to move the JPEG Sequences into a "proxy" subdirectory. I have it added as a Thunar Custom Action, so it works for the time being.</p>
<pre contenteditable="false">#!/bin/bash

cd "$1"
mkdir proxy
find . -maxdepth 1 -name '*.jpg' -type f -exec mv '{}' proxy/ \;
find . -maxdepth 1 -name '*.jpgs' -type f -exec sed -i 's/^\./.\/proxy/g' '{}' \;

exit 0
</pre>]]></content:encoded>
						                            <category domain="https://cinelerra-gg.org/ja/forum/help-video/">Video Editing</category>                        <dc:creator>benrob0329</dc:creator>
                        <guid isPermaLink="true">https://cinelerra-gg.org/ja/forum/help-video/set-proxy-subdirectory/#post-1828</guid>
                    </item>
				                    <item>
                        <title>Answer to: Set Proxy Subdirectory</title>
                        <link>https://cinelerra-gg.org/ja/forum/help-video/set-proxy-subdirectory/#post-1827</link>
                        <pubDate>Thu, 22 Jul 2021 16:18:02 +0000</pubDate>
                        <description><![CDATA[Oh, yes, that would be much better.  I will write this up and add to the Bug Tracker / Feature Request.]]></description>
                        <content:encoded><![CDATA[<p>Oh, yes, that would be much better.  I will write this up and add to the Bug Tracker / Feature Request.</p>]]></content:encoded>
						                            <category domain="https://cinelerra-gg.org/ja/forum/help-video/">Video Editing</category>                        <dc:creator>phylsmith2004</dc:creator>
                        <guid isPermaLink="true">https://cinelerra-gg.org/ja/forum/help-video/set-proxy-subdirectory/#post-1827</guid>
                    </item>
				                    <item>
                        <title>RE: Set Proxy Subdirectory</title>
                        <link>https://cinelerra-gg.org/ja/forum/help-video/set-proxy-subdirectory/#post-1826</link>
                        <pubDate>Thu, 22 Jul 2021 16:12:09 +0000</pubDate>
                        <description><![CDATA[I feel like an environment variable would be a bit obtuse for something that could wind up being project specific (if working collaboratively), but I suppose it depends on the use-case. Anot...]]></description>
                        <content:encoded><![CDATA[<p>I feel like an environment variable would be a bit obtuse for something that could wind up being project specific (if working collaboratively), but I suppose it depends on the use-case. Another approach would be to add an option to the JPEG Sequence exporter that places the frames in their own directory (which is probably the simpler option, to be honest).</p>]]></content:encoded>
						                            <category domain="https://cinelerra-gg.org/ja/forum/help-video/">Video Editing</category>                        <dc:creator>benrob0329</dc:creator>
                        <guid isPermaLink="true">https://cinelerra-gg.org/ja/forum/help-video/set-proxy-subdirectory/#post-1826</guid>
                    </item>
				                    <item>
                        <title>Answer to: Set Proxy Subdirectory</title>
                        <link>https://cinelerra-gg.org/ja/forum/help-video/set-proxy-subdirectory/#post-1825</link>
                        <pubDate>Thu, 22 Jul 2021 15:59:26 +0000</pubDate>
                        <description><![CDATA[It sounds like a good idea to have a CIN_PROXY variable to solve this problem similar to the other environment variables as seen at:
However, what I do is at a terminal window in that direc...]]></description>
                        <content:encoded><![CDATA[<p>It sounds like a good idea to have a CIN_PROXY variable to solve this problem similar to the other environment variables as seen at:</p>
<p>https://cinelerra-gg.org/download/CinelerraGG_Manual/Environment_Variables_Custo.html</p>
<p>However, what I do is at a terminal window in that directory is:</p>
<p>   rm -f *.proxy*.jpg</p>
<p>Of course, "rm" to delete files can be dangerous if you are not careful or if you make a lot of typos.  Or if you have real video files with the word proxy in them!  Or you can edit the file: {video name}.proxy#-{type}.jpgs which lists all of the jpg files and add an rm in front of each to delete them carefully that way.</p>
<p>But it would probably not be too hard to program in a CIN_PROXY variable if there is a programmer out there who would like to do this.</p>]]></content:encoded>
						                            <category domain="https://cinelerra-gg.org/ja/forum/help-video/">Video Editing</category>                        <dc:creator>phylsmith2004</dc:creator>
                        <guid isPermaLink="true">https://cinelerra-gg.org/ja/forum/help-video/set-proxy-subdirectory/#post-1825</guid>
                    </item>
				                    <item>
                        <title>Set Proxy Subdirectory</title>
                        <link>https://cinelerra-gg.org/ja/forum/help-video/set-proxy-subdirectory/#post-1824</link>
                        <pubDate>Thu, 22 Jul 2021 03:31:48 +0000</pubDate>
                        <description><![CDATA[I&#039;ve found myself messing around with different proxy formats to try and figure out which one is A) Fast to encode and B) Performant while editing, and surprisingly just a Jpeg sequence seem...]]></description>
                        <content:encoded><![CDATA[<p>I've found myself messing around with different proxy formats to try and figure out which one is A) Fast to encode and B) Performant while editing, and surprisingly just a Jpeg sequence seems to do really well, despite being rather large. The only problem is that my footage directory has way too many files in it now to manage, and I have to pull my actual footage out and delete the whole folder to clear the proxy. Is there a way to set the (preferably relative) directory of proxy files to something like "./CIV_PROXY/footage.proxy.whatever" instead of just dumping it into the main directory of the source file? Thanks!</p>
<p> </p>
<p>EDIT: Looking at the jpgs file, it's just a list of filenames (as I assumed). I suppose it'd be trivial to write a script to move all the given frames to a folder and change the jpgs file, but I'd love an in-editor config for that.</p>]]></content:encoded>
						                            <category domain="https://cinelerra-gg.org/ja/forum/help-video/">Video Editing</category>                        <dc:creator>benrob0329</dc:creator>
                        <guid isPermaLink="true">https://cinelerra-gg.org/ja/forum/help-video/set-proxy-subdirectory/#post-1824</guid>
                    </item>
							        </channel>
        </rss>
		