Studio Flip
Studio Flip
  • 60
  • 69 681
Export UV from C4D to PSD
Simple description on how to export UV's from C4D S23 to Photoshop. Note to self. No audio
มุมมอง: 17 479

วีดีโอ

Export Time Ruler Markers from After Effect
มุมมอง 2.9K3 ปีที่แล้ว
You can export time ruler markers from adobe after effects to a csv format for import in Excell or export the markers to an html format for a time overview with thumbnails. Short version: export the AE project to an Adobe premier pro project (file - export). Import the file in premiere, select the composition with the markers (shows up in th etimeline) and export to either a CSV file or HTML.
UDIM in C4D using Redshift
มุมมอง 4.4K3 ปีที่แล้ว
U dimension or UDIM UV maps can be used in C4D with Redshift (and Arnold). In this note to self I first explain create an object with UDIM uv maps. It's the boring bit. This can be done more efficient in MaterialView a tool in the free 4dPaint by the kind Kiwi Kent Barber at Gumroad.
FNV koekeerlijkverdelen
มุมมอง 174 ปีที่แล้ว
The Dutch economy has been growing steadily over the past years. But for the 9 million people that made this happen the increased welfare was not distributed equally. On top of that Covid threatens to make this ineguality even bigger. FNV adresses this problem.
Mijn ZGV portal v12
มุมมอง 654 ปีที่แล้ว
Mijn ZGV patienten portaal voor Ziekenhuis Gelderse Vallei
Project BEZIG Flora 2
มุมมอง 84 ปีที่แล้ว
Project BEZIG Flora 2
Mobiliteitschema Desiree
มุมมอง 54 ปีที่แล้ว
Mobiliteitschema Desiree
activiteiten meter Fora 1
มุมมอง 94 ปีที่แล้ว
activiteiten meter Fora 1
Care after the hospital
มุมมอง 3335 ปีที่แล้ว
Informatieve animatie over het regelen van zorg na het ziekenhuis. De wet AVG regelt dat patiënten toestemming aan het ziekenhuis moeten geven als ze willen dat de zorg na het ziekenhuis voor hen geregeld wordt.
Beweeg u Fit
มุมมอง 2635 ปีที่แล้ว
Wie ouder wordt moet extra aandacht aan voeding en beweging besteden.
mindfulness cats
มุมมอง 1095 ปีที่แล้ว
Mindfulness cats, just relax
eiwit en herstel flip
มุมมอง 295 ปีที่แล้ว
Eiwit en herstel, uitleganimatie over het belang van eiwitconsumptie voor herstel.
promo pleido
มุมมอง 2615 ปีที่แล้ว
Making of Pleido (sort of), a 2d illustrated character turns 3d.
Plein doneren
มุมมอง 315 ปีที่แล้ว
Plein doneren
Wet AVG uitgelegd
มุมมอง 2.3K6 ปีที่แล้ว
Animatie voor Ziekenhuis Gelderse Vallei. De video legt de invoering uit van de wet AVG aan de hand van een voorval.
Presentatie Logo
มุมมอง 456 ปีที่แล้ว
Presentatie Logo
van Winst naar Waarde
มุมมอง 696 ปีที่แล้ว
van Winst naar Waarde
skull
มุมมอง 1296 ปีที่แล้ว
skull
Fluorescense microscopy
มุมมอง 1256 ปีที่แล้ว
Fluorescense microscopy
add your hdri to gsg HDRI Link
มุมมอง 2.1K7 ปีที่แล้ว
add your hdri to gsg HDRI Link
Crossmedia Club
มุมมอง 937 ปีที่แล้ว
Crossmedia Club
eyeballsea
มุมมอง 287 ปีที่แล้ว
eyeballsea
inyourhands
มุมมอง 507 ปีที่แล้ว
inyourhands
i-Tree english version
มุมมอง 157 ปีที่แล้ว
i-Tree english version
Crunch
มุมมอง 577 ปีที่แล้ว
Crunch
i Tree NL
มุมมอง 1147 ปีที่แล้ว
i Tree NL
Omgevingsdienst werkprocessen
มุมมอง 2037 ปีที่แล้ว
Omgevingsdienst werkprocessen
pinstoring
มุมมอง 487 ปีที่แล้ว
pinstoring
kentekenparkeren
มุมมอง 767 ปีที่แล้ว
kentekenparkeren
3d character animation
มุมมอง 1217 ปีที่แล้ว
3d character animation

ความคิดเห็น

  • @fz1576
    @fz1576 4 หลายเดือนก่อน

    If it helps, here is a script that saves all the current After Effects Comp markers to a local file: app.beginUndoGroup("Export Markers to Project Directory"); var activeItem = app.project.activeItem; if (!(activeItem instanceof CompItem)) { alert("Please select a composition."); app.endUndoGroup(); } else { var markers = activeItem.markerProperty; var markerInfo = ""; if (markers.numKeys === 0) { alert("There are no markers in this composition."); } else { for (var i = 1; i <= markers.numKeys; i++) { var marker = markers.keyValue(i); var time = markers.keyTime(i); markerInfo += time.toFixed(2) + "\t" + marker.comment + " "; } // Get the path to the current project directory var projectPath = app.project.file ? app.project.file.parent.fsName : "~/Desktop"; // Create a file in the project directory var fileName = activeItem.name.replace(/[\/\?<>\\:\*\|"]/g, "_") + "_markers.txt"; var exportFile = new File(projectPath + "/" + fileName); exportFile.open("w"); exportFile.write(markerInfo); exportFile.close(); // Open the file using system-specific commands if ($.os.indexOf("Mac") !== -1) { system.callSystem('open "' + exportFile.fsName + '"'); } else { system.callSystem('start "" "' + exportFile.fsName + '"'); } alert("Markers file has been saved as: " + exportFile.fsName); } } app.endUndoGroup(); It performs the following actions: Checks if a composition is selected. If the composition has markers, it collects their time positions and comments. Determines the save location (project directory or desktop if the project isn't saved). Creates a text file named after the composition with "_markers" suffix. Writes the marker information to the file. Attempts to open the file using the system's default text editor. Displays an alert with the path to the saved file. Instructions for Use: Open your After Effects project. Select the composition containing the markers you want to export. Go to File > Scripts > Run Script File... Navigate to where you saved this script and select it. Click "Open" to run the script. If successful, an alert will appear showing the path to the saved markers file. The file should open automatically in your default text editor. If the file doesn't open automatically, navigate to the location shown in the alert and open it manually. Notes: The script works on both Windows and macOS. The exported file will be a tab-delimited text file, which can be easily imported into spreadsheet software. If your composition name contains special characters, they will be replaced with underscores in the filename. In some environments with strict security settings, you may need to open the file manually. Ensure you have write permissions in the project directory or on the desktop.