Manta Interactive Ray Tracer Development Mailing List

Text archives Help


Re: [Manta] r1836 - trunk/SwigInterface


Chronological Thread 
  • From: Chems Touati <chems@sci.utah.edu>
  • To: Chems Touati <chems@sci.utah.edu>
  • Cc: Solomon Boulos <boulos@cs.utah.edu>, MANTA <manta@sci.utah.edu>, Media List <media@sci.utah.edu>
  • Subject: Re: [Manta] r1836 - trunk/SwigInterface
  • Date: Thu, 8 Nov 2007 11:07:09 -0700

Hi,

I forgot to add that at SCI we have a whole media department dedicated to distributing media in web/print/video format.  (Other Institutions and Research groups are really jealous!!!)

You guys write the super-star code........ let use manage the media and advertise your warez!  I get paid to manage video compression and distribution formats.  Let me help you get famous!  Outsource your video compression jobs.  Peace my brothers and sisters!!!!


P.S.  Live demos get the money!  Work your software into our production pipeline!



Regards,

//cheMs
-----------------------------------------------------------------------
Chems Touati
Producer and Motion Graphics Designer
The Visual Supercomputing Center
801.581.4772

Scientific Computing and Imaging Institute
University of Utah


On Nov 8, 2007, at 10:56 AM, Chems Touati wrote:

Both apps are using the QuickTime protocol I think.  All of the same compression/file formats should be available in each application.

Regards,

//cheMs
-----------------------------------------------------------------------
Chems Touati
Producer and Motion Graphics Designer
The Visual Supercomputing Center
801.581.4772

Scientific Computing and Imaging Institute
University of Utah


On Nov 8, 2007, at 10:45 AM, Solomon Boulos wrote:

iShowU is much slower however than Snapz because iShowU tries to do compression on the fly. For full screen capture, iShowU is simply not an option while SnapzPro lets you choose different compression schemes after the fact (which is actually nice if you want to make a high quality H.264 and some sort of lame version for people on old systems).

Also, I run Snapz on Leopard ;)

On Nov 8, 2007, at 9:40 AM, Chems Touati wrote:

Hello,

I've been pleased with iShowU lately.  Much more flexible than Snapz IMHO.  

It only runs when launched (Snapz Pro is always running), and it offers a nice UI for on-the-fly video compression as well.  Plus, Leopard support already for $20.

http://www.shinywhitebox.com/home/home.html

=)

For the MTV generation.....check the music video:



Regards,

//cheMs
-----------------------------------------------------------------------
Chems Touati
Producer and Motion Graphics Designer
Visual Supercomputing Center
801.581.4772

SCI Institute, University of Utah





On Nov 7, 2007, at 9:50 PM, Solomon Boulos wrote:

If you're on a mac, just get Snapz Pro X from Ambrosia Software for $69. It's probably a lot better than any code from someone on the web and you can then capture your cursor and other info.

On Nov 7, 2007, at 8:53 PM, Abe Stephens wrote:

Note, it's necessary to run these scripts out of the SwigInterface/ directory rather than the lib/ directory due to dependencies on other scripts.

source bin/pythonpath.csh
python ../SwigInterface/runwxmanta.py

I just found some code to stream frames from GL directly into quicktime, so the next time I need to make a movie in Manta I will probably add that feature to the GUI.

Abe

On Nov 7, 2007, at 9:48 PM, abe@sci.utah.edu wrote:

Author: abe
Date: Wed Nov  7 21:48:32 2007
New Revision: 1836

Modified:
 trunk/SwigInterface/CMakeLists.txt
Log:

Fixed cyclic re-export error on Leopard for wxManta interface.

M    SwigInterface/CMakeLists.txt


Modified: trunk/SwigInterface/CMakeLists.txt
==============================================================================
--- trunk/SwigInterface/CMakeLists.txt (original)
+++ trunk/SwigInterface/CMakeLists.txt Wed Nov  7 21:48:32 2007
@@ -56,6 +56,7 @@
# Manta Interface.
SET_SOURCE_FILES_PROPERTIES(mantainterface.i PROPERTIES CPLUSPLUS ON)
SET_SOURCE_FILES_PROPERTIES(mantainterface.i PROPERTIES SWIG_FLAGS "${MANTA_SWIG_FLAGS}")
+
SWIG_ADD_MODULE(mantainterface python mantainterface.i manta.cc manta.h)

SWIG_LINK_LIBRARIES(mantainterface
@@ -67,6 +68,12 @@
 -lm)
ADD_DEPENDENCIES(_mantainterface ${MANTA_TARGET_LINK_LIBRARIES})

+IF (APPLE_LEOPARD_LD)
+  SET_TARGET_PROPERTIES(_mantainterface PROPERTIES
+    LINK_FLAGS "-Wl,-dylib_file,/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib"
+    )
+ENDIF (APPLE_LEOPARD_LD)
+
############################################################
# Manta Runtime.
SET_SOURCE_FILES_PROPERTIES(manta.i PROPERTIES CPLUSPLUS ON)
@@ -94,6 +101,14 @@
 ${X11_LIBRARIES}
 -lm)
ADD_DEPENDENCIES(_manta ${MANTA_TARGET_LINK_LIBRARIES})
+
+
+IF (APPLE_LEOPARD_LD)
+  SET_TARGET_PROPERTIES(_manta PROPERTIES
+    LINK_FLAGS "-Wl,-dylib_file,/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib"
+    )
+ENDIF (APPLE_LEOPARD_LD)
+

# X11 Interface.
PYTHON_POST_BUILD_COPY(runmanta.py)








Archive powered by MHonArc 2.6.16.

Top of page