<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Question for advanced/Pro slic3r users</title>
        <description> Hi Guys, 

I&#039;m looking for resources for batch slicing multiple models into a single .gcode file through the command line. 

The Idea would be that files would be placed in folders in groups of 4, they would be  automatically imported into slic3r and setup to print sequentially based and finally the .gcode would be exported (all through the command line)

Is this possible? Thanks in advance!

Regards, 
Kevin</description>
        <link>https://reprap.org/forum/read.php?1,798314,798314#msg-798314</link>
        <lastBuildDate>Sun, 15 Mar 2026 22:18:03 -0400</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://reprap.org/forum/read.php?1,798314,798598#msg-798598</guid>
            <title>Re: Question for advanced/Pro slic3r users</title>
            <link>https://reprap.org/forum/read.php?1,798314,798598#msg-798598</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>etfrench</strong><br />
Won't that script just put the individual models in the same XYZ space. Slic3r won't be able to arrange them.</div></blockquote>
<br />
<br />
Slic3r will auto arrange them,  if you export your config with the sequential printing set and pass it on the command line it will print sequentially or you can add  --complete-objects to the command line and optionally these two extra settings if you need more clearance than the default.  Personally, I think it's easier just to export the config as you want it.<br />
<br />
<br />
--extruder-clearance-radius Radius in mm above which extruder won't collide with anything(default: 20)<br />
--extruder-clearance-height Maximum vertical extruder depth; i.e. vertical distance from extruder tip and carriage bottom (default: 20)]]></description>
            <dc:creator>DADIY</dc:creator>
            <category>General</category>
            <pubDate>Wed, 29 Nov 2017 08:59:44 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?1,798314,798552#msg-798552</guid>
            <title>Re: Question for advanced/Pro slic3r users</title>
            <link>https://reprap.org/forum/read.php?1,798314,798552#msg-798552</link>
            <description><![CDATA[ Take a look at Pronterface/printrun one of the often missed tools is platter, can join slt's or gcode into single platter with an auto fit feature also (for stls')<br />
<br />
(I haven't played with this for some time, looks like it changed lots)]]></description>
            <dc:creator>Dust</dc:creator>
            <category>General</category>
            <pubDate>Tue, 28 Nov 2017 21:49:12 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?1,798314,798513#msg-798513</guid>
            <title>Re: Question for advanced/Pro slic3r users</title>
            <link>https://reprap.org/forum/read.php?1,798314,798513#msg-798513</link>
            <description><![CDATA[ Won't that script just put the individual models in the same XYZ space. Slic3r won't be able to arrange them.]]></description>
            <dc:creator>etfrench</dc:creator>
            <category>General</category>
            <pubDate>Tue, 28 Nov 2017 15:54:02 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?1,798314,798417#msg-798417</guid>
            <title>Re: Question for advanced/Pro slic3r users</title>
            <link>https://reprap.org/forum/read.php?1,798314,798417#msg-798417</link>
            <description><![CDATA[ A quick vbs file to merge all files in a folder to get you started -<br />
<br />
<br />
<pre class="bbcode">
dim strSTLFolder
dim strGCodeFolder
dim PathtoSlic3r

strSTLFolder  = "c:\test\stl_files\"
strGCodeFolder= "c:\test\gcode_files\"
PathtoSlic3r  = "C:\test\Slic3r\slic3r-console.exe"


Set objFSO = CreateObject("Scripting.FileSystemObject")
objStartFolder = strSTLFolder
Set objFolder = objFSO.GetFolder(objStartFolder)

Set colFiles = objFolder.Files

tempFileNameList = ""

For Each objFile in colFiles
    tempFileNameList = tempFileNameList + strSTLFolder + objFile.Name + " "
Next

'Run Slic3r
Set oShell = WScript.CreateObject ("WScript.Shell")
oShell.run PathtoSlic3r + " -m " + tempFileNameList + " --output " + strGCodeFolder + "outfilename.g"
Set oShell = Nothing
</pre>]]></description>
            <dc:creator>DADIY</dc:creator>
            <category>General</category>
            <pubDate>Tue, 28 Nov 2017 06:52:25 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?1,798314,798415#msg-798415</guid>
            <title>Re: Question for advanced/Pro slic3r users</title>
            <link>https://reprap.org/forum/read.php?1,798314,798415#msg-798415</link>
            <description><![CDATA[ From the slic3r manual, it says you can slice multiple files into one gcode file with the command - <br />
<br />
slic3r -m model1.stl model2.stl model3.stl<br />
<br />
or under windows<br />
<br />
slic3r-console -m model1.stl model2.stl model3.stl<br />
<br />
<br />
See [<a href="http://manual.slic3r.org/advanced/command-line" target="_blank"  rel="nofollow">manual.slic3r.org</a>] for more details,  like how to export your config first to make the command line simpler.]]></description>
            <dc:creator>DADIY</dc:creator>
            <category>General</category>
            <pubDate>Tue, 28 Nov 2017 06:35:21 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?1,798314,798332#msg-798332</guid>
            <title>Re: Question for advanced/Pro slic3r users</title>
            <link>https://reprap.org/forum/read.php?1,798314,798332#msg-798332</link>
            <description><![CDATA[ Sounds to me not so much a Slic3r thing than a shell/batch file programming thing thing.<br />
<br />
Worst case, you would write a program in some language or other (C, Java, C#, Python, Perl, whatever) to check the folder for the presence of the 4 files, run Slic3r with the appropriate command line settings, and perhaps post-process the 4 resulting G-code files into a single one.]]></description>
            <dc:creator>frankvdh</dc:creator>
            <category>General</category>
            <pubDate>Mon, 27 Nov 2017 15:10:06 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?1,798314,798314#msg-798314</guid>
            <title>Question for advanced/Pro slic3r users</title>
            <link>https://reprap.org/forum/read.php?1,798314,798314#msg-798314</link>
            <description><![CDATA[ Hi Guys, <br />
<br />
I'm looking for resources for batch slicing multiple models into a single .gcode file through the command line. <br />
<br />
The Idea would be that files would be placed in folders in groups of 4, they would be  automatically imported into slic3r and setup to print sequentially based and finally the .gcode would be exported (all through the command line)<br />
<br />
Is this possible? Thanks in advance!<br />
<br />
Regards, <br />
Kevin]]></description>
            <dc:creator>khannon3</dc:creator>
            <category>General</category>
            <pubDate>Mon, 27 Nov 2017 13:40:50 -0500</pubDate>
        </item>
    </channel>
</rss>
