Capture picture from stageVideo

Hi,
I developed a video conference application and for rendering the video, i want to implement stageVideo API for rendering the video on hardware and also i want to capture picture from stageVideo component, so please guide me for capturing the photo.
Thanks
Ram

Hi,
Thanks for your interest in StageVideo. The following resources might be useful:
http://help.adobe.com/en_US/as3/dev/WSe9ecd9e6b89aefd2-68d5ef8f12cc8511f6c-8000.html
http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/media/StageVideo. html
http://everythingfla.com/quickies/stageVideo
http://www.adobe.com/devnet/devices/articles/video_content_tv.html
Thank you !

Similar Messages

  • How to capture images from stageVideo container

    Hi,
    I am developing video conference application in flash with FMS4.5 and integrating StageVideo API for rendering video on hardware and it's working very nice but, I am not able to capture picture from StageVideo so If anybody have any idea/suggestions about capture picture from StageVideo then your suggestion will help more.
    Thanks
    Ram

    Hi,
    Thanks for your interest in StageVideo. The following resources might be useful:
    http://help.adobe.com/en_US/as3/dev/WSe9ecd9e6b89aefd2-68d5ef8f12cc8511f6c-8000.html
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/media/StageVideo. html
    http://everythingfla.com/quickies/stageVideo
    http://www.adobe.com/devnet/devices/articles/video_content_tv.html
    Thank you !

  • I am planing to buy license of premier pro.I wan to capture picture from my camera .which card  i want to install ??

    i am planing to buy license of premier pro.I wan to capture picture from my camera .which card  i want to install ??

    If you're asking about Live Capture, where you record the camera feed direct to hard disk, then you need a Firewire interface or one of the (few) supported HDMI/SDI cards such as the AJA Kona, Matrox MX02 or BlackMagic Intensity Pro - however those have very specific motherboard requirements so you need to research them carefully before buying anything.
    For an intro to Live Capture I suggest you read the manual: Adobe Premiere Pro Help | Capturing and digitizing footage

  • Saving Captured picture from ADF Mobile Application into Remote Database

    Hi,
    I am developing adf mobile application by using Device Demo Application from ADF Mobile Samples.I had deployed this application into Android mobile and capturing picture.
    My Question is how can i save this captured pictured into Remote Database.
    Could any one help on this!!!
    Thanks in advance!!
    Regards
    Amar
    Edited by: 973755 on Nov 28, 2012 7:46 AM
    Edited by: 973755 on Nov 28, 2012 7:47 AM

    Hi Joe,
    Thanks for the reply!!
    As per your instructions i created two classes 1.GetConnection.java and 2.PictureBean.java
    in GetConnection.java i written following code
    package Picture;
    import java.sql.Connection;
    import java.sql.SQLException;
    import oracle.adfmf.framework.api.AdfmfJavaUtilities;
    public class GetConncetion {
    public GetConncetion() {
    super();
    protected static Connection conn = null;
    public static Connection getConnection() throws Exception {
    if (conn == null) {
    try {
    // create a database connection
    String Dir = AdfmfJavaUtilities.getDirectoryPathRoot(AdfmfJavaUtilities.ApplicationDirectory);
    String connStr = "jdbc:oracle:thin:@fusion.networks.com:1521:fusion"+Dir+"/DeviceDemo.db" ;
    conn = new SQLite.JDBCDataSource(connStr).getConnection();
    System.out.println("connection*******"+conn);
    } catch (SQLException e) {
    // if the error message is "out of memory",
    // it probably means no database file is found
    System.err.println(e.getMessage());
    return conn;
    and in PictureBean.java the following code i modified..
    package Picture;
    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.sql.SQLException;
    import oracle.adf.model.datacontrols.device.DeviceManager;
    import oracle.jdbc.pool.OracleDataSource;
    public class PictureBean {
    public PictureBean() {
    super();
    String src;
    private int quality = 25;
    private int destination = DeviceManager.CAMERA_DESTINATIONTYPE_FILE_URI;
    private int source = DeviceManager.CAMERA_SOURCETYPE_PHOTOLIBRARY;
    private boolean allowEdit = false;
    private int encoding = DeviceManager.CAMERA_ENCODINGTYPE_JPEG;
    private int targetWidth = 0;
    private int targetHeight= 0;
    public void setQuality(int quality) {
    this.quality = quality;
    public int getQuality() {
    return quality;
    public void setDestination(int destination) {
    this.destination = destination;
    public int getDestination() {
    return destination;
    public void setSource(int source) {
    this.source = source;
    public int getSource() {
    return source;
    public void setAllowEdit(boolean allowEdit) {
    this.allowEdit = allowEdit;
    public boolean getAllowEdit() {
    return allowEdit;
    public boolean isAllowEdit() {
    return allowEdit;
    public void setEncoding(int encoding) {
    this.encoding = encoding;
    public int getEncoding() {
    return encoding;
    public void setTargetWidth(int targetWidth) {
    this.targetWidth = targetWidth;
    public int getTargetWidth() {
    return targetWidth;
    public void setTargetHeight(int targetHeight) {
    this.targetHeight = targetHeight;
    public int getTargetHeight() {
    return targetHeight;
    public String GetSource(String result) {
    String src = "";
    if( getDestination() == DeviceManager.CAMERA_DESTINATIONTYPE_DATA_URL ) {
    src = "data:image/gif;base64,";
    src = src + result;
    System.out.println("src value in GetSource is "+src);
    return src;
    public void setSource(String result) {
    PictureBean pb1=new PictureBean();
    String src = "data:image/gif;base64,";
    if( getDestination() == DeviceManager.CAMERA_DESTINATIONTYPE_DATA_URL ) {
    src = "data:image/gif;base64,";
    src = src + result;
    public String GetSource(){
    return src;
    public boolean savePicture() throws Exception {       
    boolean ret=false;
    PictureBean pb=new PictureBean();
    String pic= pb.GetSource();
    try{
    Connection conn=GetConncetion.getConnection();
    conn.setAutoCommit(false);
    String insertSQL ="INSERT INTO IMAGE(ID,PIC) VALUES(?,?)";
    PreparedStatement pStmt = conn.prepareStatement(insertSQL);
    pStmt.setInt(1, 1);
    pStmt.setString(2,pic);
    pStmt.execute();
    conn.commit();
    ret = true;
    }catch (SQLException e) {
    System.err.println(e.getMessage());
    } catch (Exception e) {
    System.err.println(e.getMessage());
    return ret;
    and i created one button in Result.amx page and in Action Listener i had given #{bindings.savePicture.execute} and deployed into Android mobile.But i am neither getting error nor getting save picture into database.
    while i run PictureBean.java class alone the following exception occurred.
    "E:\ADF R2\jdk160_24\bin\javaw.exe" -client -classpath "C:\JDeveloper\mywork\DeviceDemo\.adf;C:\JDeveloper\mywork\DeviceDemo\ViewController\classes;E:\OracleJdbc\ojdbc14_g.jar;E:\OracleJdbc\ojdbc14.jar;E:\OracleJdbc\ojdbc.jar;C:\Users\Amar\Downloads\ojdbc6_g.jar;C:\Users\Amar\Downloads\ojdbc6.jar;E:\ADF R2\oracle_common\modules\oracle.adf.view_11.1.1\adf-faces-databinding-rt.jar;E:\ADF R2\oracle_common\modules\oracle.adf.share_11.1.1\adf-share-support.jar;E:\ADF R2\oracle_common\modules\oracle.adf.share.ca_11.1.1\adf-share-ca.jar;E:\ADF R2\oracle_common\modules\oracle.adf.share.ca_11.1.1\adf-share-base.jar;E:\ADF R2\oracle_common\modules\oracle.adf.share_11.1.1\adflogginghandler.jar;E:\ADF R2\oracle_common\modules\oracle.idm_11.1.1\identitystore.jar;E:\ADF R2\oracle_common\modules\oracle.xdk_11.1.0\xmlparserv2.jar;E:\ADF R2\oracle_common\modules\oracle.adf.model_11.1.1\adfm.jar;E:\ADF R2\oracle_common\modules\groovy-all-1.6.3.jar;E:\ADF R2\oracle_common\modules\oracle.ldap_11.1.1\ojmisc.jar;E:\ADF R2\oracle_common\modules\oracle.adf.share_11.1.1\commons-el.jar;E:\ADF R2\oracle_common\modules\oracle.adf.share_11.1.1\jsp-el-api.jar;E:\ADF R2\oracle_common\modules\oracle.adf.share_11.1.1\oracle-el.jar;E:\ADF R2\oracle_common\modules\oracle.xmlef_11.1.1\xmlef.jar;E:\ADF R2\oracle_common\modules\oracle.bali.share_11.1.1\share.jar;E:\ADF R2\modules\com.bea.core.apache.xercesImpl_2.8.1.jar;E:\ADF R2\modules\javax.activation_1.1.0.0_1-1.jar;E:\ADF R2\modules\javax.mail_1.1.0.0_1-4-1.jar;E:\ADF R2\modules\glassfish.jaxb_1.0.0.0_2-1-12.jar;E:\ADF R2\modules\javax.xml.bind_2.1.1.jar;E:\ADF R2\oracle_common\modules\oracle.adf.model_11.1.1\adftransactionsdt.jar;E:\ADF R2\oracle_common\modules\oracle.adf.view_11.1.1\adf-dt-at-rt.jar;E:\ADF R2\oracle_common\modules\oracle.adf.model_11.1.1\adfdt_common.jar;E:\ADF R2\oracle_common\modules\oracle.adf.model_11.1.1\adflibrary.jar;E:\ADF R2\oracle_common\modules\oracle.adf.model_11.1.1\db-ca.jar;E:\ADF R2\oracle_common\modules\oracle.adf.model_11.1.1\jdev-cm.jar;E:\ADF R2\oracle_common\modules\oracle.adf.security_11.1.1\adf-share-security.jar;E:\ADF R2\oracle_common\modules\oracle.adf.security_11.1.1\adf-controller-security.jar;E:\ADF R2\oracle_common\modules\oracle.adf.share_11.1.1\adfsharembean.jar;E:\ADF R2\oracle_common\modules\oracle.jmx_11.1.1\jmxframework.jar;E:\ADF R2\oracle_common\modules\oracle.jmx_11.1.1\jmxspi.jar;E:\ADF R2\oracle_common\modules\oracle.adf.model_11.1.1\bc4j-mbeans.jar;E:\ADF R2\oracle_common\modules\oracle.javatools_11.1.1\resourcebundle.jar;E:\ADF R2\oracle_common\modules\oracle.ldap_11.1.1\ldapjclnt11.jar;E:\ADF R2\oracle_common\modules\oracle.jps_11.1.1\jps-api.jar;E:\ADF R2\oracle_common\modules\oracle.jps_11.1.1\jps-common.jar;E:\ADF R2\oracle_common\modules\oracle.jps_11.1.1\jps-ee.jar;E:\ADF R2\oracle_common\modules\oracle.jps_11.1.1\jps-internal.jar;E:\ADF R2\oracle_common\modules\oracle.jps_11.1.1\jps-unsupported-api.jar;E:\ADF R2\oracle_common\modules\oracle.jps_11.1.1\jps-manifest.jar;E:\ADF R2\oracle_common\modules\oracle.jps_11.1.1\jacc-spi.jar;E:\ADF R2\oracle_common\modules\oracle.pki_11.1.1\oraclepki.jar;E:\ADF R2\oracle_common\modules\oracle.osdt_11.1.1\osdt_core.jar;E:\ADF R2\oracle_common\modules\oracle.osdt_11.1.1\osdt_cert.jar;E:\ADF R2\oracle_common\modules\oracle.osdt_11.1.1\osdt_xmlsec.jar;E:\ADF R2\oracle_common\modules\oracle.osdt_11.1.1\osdt_ws_sx.jar;E:\ADF R2\oracle_common\modules\oracle.iau_11.1.1\fmw_audit.jar;E:\ADF R2\modules\javax.security.jacc_1.0.0.0_1-1.jar;E:\ADF R2\oracle_common\modules\oracle.mds_11.1.1\mdsrt.jar;E:\ADF R2\oracle_common\modules\oracle.mds_11.1.1\oramds.jar;E:\ADF R2\modules\javax.servlet_1.0.0.0_2-5.jar;E:\ADF R2\modules\javax.jsp_1.2.0.0_2-1.jar;E:\ADF R2\jdeveloper\ide\macros\..\..\..\oracle_common\modules\oracle.jdbc_11.1.1\ojdbc6dms.jar;E:\ADF R2\oracle_common\jlib\commons-cli-1.0.jar;E:\ADF R2\oracle_common\modules\oracle.dms_11.1.1\dms.jar;E:\ADF R2\oracle_common\modules\oracle.xdk_11.1.0\xml.jar;E:\ADF R2\oracle_common\modules\oracle.javacache_11.1.1\cache.jar;E:\ADF R2\oracle_common\modules\oracle.ucp_11.1.0.jar;E:\ADF R2\oracle_common\modules\oracle.odl_11.1.1\ojdl.jar;E:\ADF R2\oracle_common\modules\oracle.javatools_11.1.1\javatools-nodeps.jar;E:\ADF R2\modules\javax.management_1.2.1.jar;E:\ADF R2\modules\javax.management.j2ee_1.0.jar;E:\ADF R2\jdeveloper\ide\macros\..\..\..\oracle_common\modules\oracle.nlsrtl_11.1.0\orai18n.jar;C:\Users\Amar\Downloads\commons-codec-1.7-bin.zip;C:\Users\Amar\Downloads\commons-codec-1.7-src.zip;E:\ADF R2\oracle_common\modules\oracle.adf.model_11.1.1\dvt-databindings-mds.jar;E:\ADF R2\oracle_common\modules\oracle.adf.view_11.1.1\dvt-databindings.jar;E:\ADF R2\oracle_common\modules\oracle.adf.view_11.1.1\dvt-facesbindings.jar;E:\ADF R2\oracle_common\modules\oracle.adf.view_11.1.1\trinidad-api.jar;E:\ADF R2\oracle_common\modules\oracle.adf.view_11.1.1\trinidad-impl.jar;E:\ADF R2\oracle_common\modules\oracle.adf.view_11.1.1\adf-richclient-api-11.jar;E:\ADF R2\oracle_common\modules\oracle.adf.view_11.1.1\adf-richclient-impl-11.jar;E:\ADF R2\oracle_common\modules\oracle.adf.view_11.1.1\adf-dynamic-faces.jar;E:\ADF R2\oracle_common\modules\oracle.adf.view_11.1.1\adf-faces-changemanager-rt.jar;E:\ADF R2\oracle_common\modules\oracle.facesconfigdt_11.1.1\facesconfigmodel.jar;E:\ADF R2\oracle_common\modules\oracle.facesconfigdt_11.1.1\taglib.jar;E:\ADF R2\modules\glassfish.el_1.0.0.0_2-1.jar;E:\ADF R2\oracle_common\modules\oracle.jsf_2.0\jsf-api.jar;E:\ADF R2\oracle_common\modules\oracle.jsf_2.0\jsf-impl.jar;E:\ADF R2\modules\glassfish.jstl_1.2.0.1.jar;C:\Users\Amar\Downloads\jndi-properties.jar.zip;C:\Users\Amar\Downloads\jndi-1.2.1.jar.zip;C:\Users\Amar\Downloads\h2-1.3.149.jar.zip;C:\Users\Amar\Downloads\Android\h2-1.3.149.zip;C:\Users\Amar\Downloads\Android\android\app;C:\Users\Amar\Downloads\Android\android;C:\Users\Amar\Downloads\Android" -Djavax.net.ssl.trustStore=C:\Users\Amar\AppData\Local\Temp\trustStore7108102737679976193.jks Picture.PictureBean
    Source value is null
    Exception in thread "main" java.lang.NoClassDefFoundError: oracle/adfmf/framework/api/AdfmfJavaUtilities
         at Picture.GetConncetion.getConnection(GetConncetion.java:24)
         at Picture.PictureBean.savePicture(PictureBean.java:140)
         at Picture.PictureBean.main(PictureBean.java:189)
    Caused by: java.lang.ClassNotFoundException: oracle.adfmf.framework.api.AdfmfJavaUtilities
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:305)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:246)
         ... 3 more
    Process exited with exit code 1.
    i already imported AdfmfJavaUtilities package dont know why it showing exception.
    and while i am debugging the GetConnection.java value of 'Dir' is null.i am not getting what is the AdfmfJavaUtilities.ApplicationDirectory?
    Could you help on this!!
    Thanks & Regards
    Amar

  • Capture picture From camera

    Hi....I want to capture the picture into a Blob column.I have a PC and a camera.What should I do.

    Hi,
    There are a number of different ways to do this, and how you make the choice will depend on your application requirements.
    If this is a 'once-only' requirement, and the database is on the same machine you're using to download the images from the camera, then you could save the image files on a local hard drive, create a database directory (SQL> CREATE DIRECTORY...), then load the images from the disk into BLOBs using the DBMS_LOB.LOADFROMFILE procedure.
    For more information on LOBs, see Oracle Application Developer's Guide - Large Objects (LOBs), Oracle SQL Reference, and Oracle Supplied PL/SQL Packages and Types Reference.
    If you need to repeat this this many times, with lots of images each time, then you might want to consider SQL*Loader. See the SQL*Loader documentation for more information on how to use SQL*Loader to load BLOBs.
    If you want lots of user's to be able to do this from different PCs, or if the database is on a different machine than the PC with the photos, then you might want to consider writing a Java JDBC application or a web application to do this. Of course, the advantage of a web application is that it can be accessed using a browser from any system, whereas a Java app would have to be copied to each PC.
    There's a feature called interMedia that ships with Oracle8i and Oracle9i that includes database object types with support for images (and audio and video). The interMedia ORDSYS.ORDImage type allows you to extract properties from images, and process images, for example, to create thumbnail images, and so on. There are two photo album demos that illustrate how to upload, process, and retrieve images stored using the interMedia ORDImage type: the interMedia Photo Album demo Servlet/JSPs demo and the interMedia Photo Album Demo for the PL/SQL Gateway. These demos are included with the Oracle9i database kit, and can be downloaded for Oracle8i from the interMedia samples page on OTN (Java Servlets/JSPs demo[url and [url=http://otn.oracle.com/sample_code/products/intermedia/htdocs/imedia_plsqlgw_sample/imedia_plsqlgw_readme.htm]PL/SQL Gateway demo[url)]. You could easily adapt these examples to use simple BLOBs instead of the ORDImage type, although you wouldn't be able to process the images (unless you used the interMedia relational API). For more information about interMedia, see the [url=http://otn.oracle.com/products/intermedia/]interMedia page on OTN.
    Hope that helps.
    Regards,
    Simon
    null

  • How do you capture a still picture from DVD

    How do you capture a still picture from a DVD

    Click iMovie/About. If you have version 9.0.4 (iMovie 11) this will work. If you have an earlier version, this will also work, but there are also other ways.
    First, get an app called MPEG Streamclip, which is free. (MPEG Streamclip from Squared 5)
    Open MPEG Streamclip.
    In iMovie, select the clip you need. Then, right-click/Reveal in Finder.
    Drag this clip into MPEG Streamclip
    In MPEG Streamclip, move the playhead to the frame you want.
    In MPEG Streamclip, click FILE/EXPORT FRAME.
    Choose JPEG, TIFF, or PNG and give it a name.
    You can then drag this photo into iPhoto.
    I have created a short video Tutorial on how to do this. There is one error in the Tutorial, where it says that Command-click is the same as right-click. I should have said Control-click instead.

  • Capturing still pictures from a digital camcorder

    I use a Canon mini DV digital camcorder and want to capture some still pictures from the movies to place in a book I am doing in IPHOTO....is this possible?

    If your canon mini dv camcorder is anything like mine then keep in mind that while shooting you have the option of taking great hi res images as well as continuous high quality video. You just have to make the extra effort to push the photo button if you happen to see a great shot. You can capture the image to an SD card most likely or to tape (I prefer SD Cards for still images).
    Or as stated above already you can make your own still from the actual video footage (altho usually at a lower resolution).

  • Pictures from my Sony HDR-CX110 uploads easy in image capture but how do i upload videos? I don't even see my videos anywhere on the screen! I'm puzzled.

    Pictures from my Sony HDR-CX110 uploads easy in image capture but how do i upload videos? I don't even see my videos on the screen. I'm puzzled!

    Photo Stream does not do videos. For videos, you must import to your computer. You can use iPhoto to import them.

  • I have a MacBook Pro. How do I capture a still picture from a video in iMovie and print the still picture?

    I have a MacBook Pro. How do I capture a still picture from a video in iMovie and print the still picture?

    Click iMovie/About. If you have version 9.0.4 (iMovie 11) this will work. If you have an earlier version, this will also work, but there are also other ways.
    First, get an app called MPEG Streamclip, which is free. (MPEG Streamclip from Squared 5)
    Open MPEG Streamclip.
    In iMovie, select the clip you need. Then, right-click/Reveal in Finder.
    Drag this clip into MPEG Streamclip
    In MPEG Streamclip, move the playhead to the frame you want.
    In MPEG Streamclip, click FILE/EXPORT FRAME.
    Choose JPEG, TIFF, or PNG and give it a name.
    You can then drag this photo into iPhoto.
    I have created a short video Tutorial on how to do this. There is one error in the Tutorial, where it says that Command-click is the same as right-click. I should have said Control-click instead.

  • Capture Still Images(Pictures), from Camera???

    Hello,
    I want to get pictures from camera, i have worked hard on it... but still cant find a solution, so plz tell me, which camera is suitable with java, and how can i take pictures from that camera, I have once downloaded a code from net,, but it is not working too, Waiting for your kind reply!
    Regards
    Kaleem

    Hello,
    My java program, detects the camera, but the problem is, how can i force camera to take a picture, and show it to me using my java program.
    I really need some lines of code, giving me solution of that????
    Regards
    Kaleem

  • Capturing Still IMgaes(pictures) from camera???

    Hello,
    I want to get pictures from camera, i have worked hard on it... but still cant find a solution, so plz tell me, which camera is suitable with java, and how can i take pictures from that camera, I have once downloaded a code from net,, but it is not working too, Waiting for your kind reply!
    Regards
    Kaleem

    Hello,
    My java program, detects the camera, but the problem is, how can i force camera to take a picture, and show it to me using my java program.
    I really need some lines of code, giving me solution of that????
    Regards
    Kaleem

  • Is there any way I can view / remove pictures from Camera Roll on the iPhone, on a Mac, without actually importing the files?

    Is there any way I can view / remove pictures from Camera Roll on the iPhone, on a Mac, without actually importing the files? I just want to view / delete files without importing them.
    For instance I have 1200 photos on my iPhone Camera Roll. Some of these are shots, that I've taken multiple times, some good, some bad. I just want to clean up my Camera Roll, but going through the pictures on the iPhone's small screen is tedious. I'd much rather look at the camera roll's photo's on my Mac, and then decide which files I'd like to keep, and which to delete.
    I don't want to import the files, as when I import the files, and delete them from Camera Roll, now the Photo's are not on my phone, and the only way to get them back on my Phone is to Import them back in using iTunes, and then they go into the Picture Library and not the Camera Roll.
    In the same way as I can view Pics from my digital camera's SD card on a Mac without having to actually copy them to my computer, is there any app out there that will let me view my iPhone pics without importing them.

    gsharp01 wrote:
    Is there any way I can view / remove pictures from Camera Roll on the iPhone, on a Mac, without actually importing the files? I just want to view / delete files without importing them.
    The short answer is yes.
    Connect your iPhone to your computer.
    Open Image Capture application.
    Click on the 4 little squares at bottom to view them as photos, not a list.
    Select the photos them click the No Entry icon at bottom to delete.

  • When trying to upload pictures from my camera I get this message although I have uploaded from the same camera in the pastiPhoto cannot import your photos because there was a problem downloading an image.

    When trying to upload pictures from my camera I get this message although I have uploaded from the same camera in the past, "iPhoto cannot import your photos because there was a problem downloading an image."

    Can you access the images with Image Capture (in your Applications Folder) ?

  • Importing pictures from Iphone 3gs to the Imac (using Iphoto?)

    I recently bought an Imac 27". Everything is set up and updated and now I want to import the 2,500 photos I have on my iphone on to my mac. But Im having problems.
    The Iphone synchronizes with Itunes fine. But under "pictures" If I check the box "synchronize pictures from Iphoto" (Maybe I shouldnt do this but I though I needed to to get the pictures from my Iphone to Iphoto" it gives me the message "Are you sure you want to synchronize pictures? all the pictures and albums on your Iphone will be replaced with pictures and albums from the current picturegallery"(roughly transelated)
    I didnt do this since as I understand it this will cause me to loose all my 2,500 pictures I have on the Iphone.
    When I open Iphoto it doesnt detect the Iphone at all.. No Iphone in the left menu at all. Image capture doesnt detect the Iphone either.
    *So what can I do to get the pictures from my iphone on to my mac?*
    The pictures in the camera roll are
    1. Pictures taken with the Iphone
    2. Pictures taken with another persons Iphone and that got sent to me
    3. Pictures taken with another persons mobile(not an Iphone( and that got sent to me
    4.Pictures saved from the net from safari browser
    5. Pictures edited in Iphone apps and saved from the apps they where edited in.
    if that info helps at all.. Im very confused now and I hopesomeone can help me out here. I though Iphone and Imac where supposed to be easy..

    English is not my mother tongue but I will try to answer this the best I can from what I have understood..
    The Iphone has synchronized with my pc previously and the apps I had on my Iphone then went to the Itunes I used on that computer.
    I got the Imac yesterday and did synchronize the Iphone with the Itunes on the Imac wich caused me to loose over half of my applications and the one album I had on the Iphone. I have checked the boxes on everything so that Itunes synchronizes everything with the Iphone now, I guess this has nothing to do with backup but I thought I had to check the boxes for it to backup all of the things I want backup of.
    When I open the adressbook program on the mac I can see my contacts there so I guess the backup is there then...
    I dont really understand the Itunes content question.. I have no Itunes content no more except for the apps. I only had one album before wich was lost when I synchronized with the Imac.
    The thing you talked about not syncing with an empty adressbook. you mean like after I have reset my Iphone so its blank I have to make a dummy contant before I connect it to the Imac and synchronizes the contacts? and choose merge instead of replace?
    how do I actually format and reset the whole Iphone back to fabric condition? and after I have done that and connected it to the Itunes should I uncheck everybox in the sync options except contacts and then sync the Iphone?
    After that I would assume I should delete the backup I have on Itunes from before I reset the Iphone so that all the pictures wont get put back in my Iphone?

  • Transfer of Pictures from PC to MacBook Pro

    Two questions. I recently bought a MacBook Pro and successfully transferred pictures from our PC. Although photographs in IPhoto retain the dates on which they were originally taken, those in Pictures only have the date on which they were transferred, ie 'created', entirely unhelpful. How do I access the original date on which the photographs were taken, not available under Info?
    Second question, more complicated, duplication of photographs in IPhoto and Pictures: is there a simple way of merging them? We used to download pictures from IPhone onto our PC under date folders, without realising they were being duplicated. Identifical pictures appear in about 6 different folders - how I can I edit them without having to do so manually?
    Any help (not too technical) gratefully received.

    There is more than one date that can be associated with an image, and I think you're running into different programs displaying different dates. This is not a comprehensive list but:
    Capture date: Date and time the photo was recorded by the camera clock, stored in EXIF camera data.
    Created date: Date and time the photo was first saved to disk by photo software on a computer
    Modified date: Date and time the edited photo was last saved to disk by photo software on a computer
    Archived date: I'm not really sure but I see this in detailed photo information too.
    Furthermore, these dates can be stored in various additional date fields in other IPTC metadata sections, and various software might not write or read them in the same ways as other software.
    But what I think is going on in your case is that the iPhoto Info panel is displaying the Capture Date from the camera recorded EXIF data, but what you see in the Finder are the Created and Modified dates.
    If I'm right, then LexSchellings' column suggestion may not work because all you would get is the File Created date, not the camera recorded Capture Date. I do not know of a way to display camera EXIF capture date in the Finder. Generally, organizing photos using that data is done using a photo management app like iPhoto, Picasa, Apple Aperture, Adobe Lightroom, Adobe Bridge, Media Pro, etc., not on the desktop.
    If you were able to view the Capture Date in Windows Explorer, then that's an advantage that Windows Explorer (the desktop) had over the Finder. I've seen other cases where the Finder couldn't do something Windows Explorer could, so I wouldn't be surprised.
    As far as the duplicates, I don't really know but I did a search at macupdate.com and you might want to check some of these utilities that can help resolve duplicates.
    MacUpdate search on "duplicate photo"
    macupdate.com is a great place to look for Mac software if you didn't find it in the Mac App Store.

Maybe you are looking for

  • Problem with JFrame's dispose();

    Hello everyone, I'm having a problem with JFrame's dispose() method. In my program I have 2 classes which go into full screen. On each screen there is a button to switch to the other screen. The first time I push the button on both of them the other

  • Final cut pro books

    hiya guys... ive just bought fcp 5 and didnt realise how tricky it would be to get into... im used to adobe premiere on the pc but recently converted to the mac... anyone got any suggestions for final cut pro 5 books which would suit me? cheers, rob

  • How do I get Firefox to ask me where to put a file I wish to download

    When I download a file, Firefox puts it somewhere. I want to be able to tell it where to put that file each and every time.

  • Cracked Glass. Please Help.

    My worst nightmare came true yesterday. As I was getting out of my car, my brand new iPod Touch 4G slipped from my hand and onto the pavement below. My stupid case from Amazon has yet to arrive, and surely enough, the lower left portion of my screen

  • Editing the Advanced Image Fill Palette

    Hi. I have created a shape and I would like to use the advanced image fill option but the colors are so limited. Is there a way to edit or add to this palette? Thank you in advance. Rebecca