Transmit API: How to send video to another running app.

Hi,
I'm not a programmer so excuse my ignorance.
Just trying to scope a project.
We'd like to get a live video output from Premiere to use in another app.
The idea is to use a video stream from Premiere as a texture map for a navigable 3d model.
It's for doing really rough 3d previs work.
We have an existing version of the 3d previs app that does the same thing with imported quicktime movies.
But our coder has not used the Premiere SDK before.
Wondering if we can use Transmit somehow... to treat our app as an external monitor.
Any pointers on how to go about this... or better still... is there anyone out there who might be up for helping us on this (low-budget but paid) project?
Many thanks
Marcus Lyall

Hi Marcus,
Yes, the Mercury Transmit API sounds like way to go for you.  I'd recommend starting from the sample project "Transmitter".  Build it into the PPro plug-ins folder (as described in the SDK Guide.pdf documentation, chapter 1, "How To Build the SDK Projects").  Your developer can set breakpoints in the transmit sample code and run a debug session with PPro, to observe how transmit plug-ins are called, and what kind of information they are passed.  It sounds like you won't working with audio, so you can just turn that off in the sample.  Chapter 9 of the SDK Guide has much more info on concepts in the transmit API.
Regards,
Zac

Similar Messages

  • How to send video iPad to iPad

    How to send video iPad to iPad

    I'm assuming you mean how to send video files, rather than using Facetime? You can download an App called bump to transfer files, But i haven't used it to send video before, so can't comment on if it works.
    There are various other Apps available which will work though. Have a look through them on the App store. Bluetooth won't work, as Apple are very touchy about how their devices are connected.

  • How to send message to another ipod user

    Hello Team ,
    Please help me to understand , how to send message to another user of Ipod
    I am having ipod 4G touch , So please guide me on this .
    also Can we pair ipod to any bluetooth head set  , Curretnly i having Samsung strero phone head phone model no SBH650 .
    Please help me ....
    Thank you
    Regards
    Mahesh

    Hi
    Please check FM <b>TH_POPUP</b>
    Is this what you require ?

  • How to send videos via Bluetooth

    Somebody plz tel me hw to send videos from music +videos via Bluetooth
    Moderator's note: We have amended the title of this post as this was moved from another thread.

    depends on the file, but bear in mind that you do need to have Bluetooth enabled in the Settings otherwise you won't see the Share > Bluetooth option when you try to share a file.

  • HT1766 How to send videos from ipad air to the cloud to free up storage space on ipad

    How do I send videos from ipad air to the cloud to free up storage space on ipad?

    I had a similar/same problem - when I deleted the video locally, it did not appear as a Cloud video.
    To solve this, I deleted it locally, signed out of iCloud, powered of the iPad, powered back on, opened videos (empty), signed back into iCloud.
    Now all my videos are present in the cloud, and none locally.
    Not a great UX though

  • How to send html newsletter via Mail app

    I want crystal and clear instruction as all the ones I have found either old fashioned and not relevant or skip that interesting part.
    I have already done html page (newsletter). Now I want to transform it somehow and send via Mail app so my contacts could receive it as html newsletter. If I need to attach txt message please add it to the instruction. I need complete how to send html newsletter.

    alabanco wrote:
    thanks. Now we've got to the most interesting part and intriguing one. Why should I upload html page to the server. I do understand uploading the images to server which will be used as links in my html mail. But why and how should I store that page in my server if I have CMS post instead from which I used pictures as links. SHould I create yet another type of post in CMS that is my html newsletter? That's not cool. What is the industry standard approach for that?
    By the way Mail.app uses that baby design templates for your messages. Why don't we have an option to delete all these creepy childish templates and store solid bold corporate style templates for newsletters and send it somehow? Or will it just attach the images to the message then? If so then it is not what I want and it is really depressing.
    The industry convention/"standard" is not to use html in email. Wheteher or not your html newsletter displays as you intended is at the mercy of the recipient and their email client settings.
    If you want to preserve your html layout and styles, save your newsletter as a pdf document and attach the pdf document to your email. Or, as already suggested, use a web server to serve your html newsletter.

  • How to send bulk mail in oracle apps 11i with pdf/Xls attachment

    hi,
    how to send bulk emails in one go ( aprrox 150-200 emails in one go) with attachment pdf file in oracle apps 11i
    thanks

    I'd use BI Publisher (XML Publisher) Bursting.
    Regards,
    Gareth
    http://garethroberts.blogspot.com
    http://www.virtuate.com

  • How can send video from my computer to apple tv

    How I can send computer' video to apple tv in order to see it on LED TV

    Figured it out!  How cool is this!
    there is an icon at the top of my laptop---a blue rectangle with a triangle pointing up...
    clicked it and was able to "turn on" air play! 
    We are set......

  • How to send images into another panel

    hi i got two panels
    and one panel creates a couple of images
    and the confusing thing is that i don't want that panel to display my images
    but i want the other side panel to display these images..
    but i don't know how to do it.
    actually i can create two panels in one class and just add them up, but
    my code is quite long and i need to separate these two panels..

    sorry i mean JLabel
    i want to send my JLabel to another panel....

  • How to send data to another site, get response, redirect and get new response

    Dear all,
    I've to write a Java EE application that have to become an interface to a payment platform. The protocol require to send a POST string containing some information (including an error and response page) to an external host, get the response and redirect the user to another host using the previous response. When the user ends the transaction the host redirect the user to my error or response page.
    For the moment my user access to my application using glassfish REALM authentication. After that I write the following code:
    public void paymentPrepare() throws UnsupportedEncodingException, IOException {
       String postUrl = "https://test.payment.test/init/http";
       HttpPost postRequest = new HttpPost(postUrl);
       String id = "99999999";
       String password = "99999999";
       String action = "4";
       String amt = "1.00";
       String currencycode = "978";
       String langid = "ENG";
       String responseurl = "http://myhost:8080/EMBOWorkshop/secure/response.xhtml";
       String errorurl = "http://myhost:8080/EMBOWorkshop/secure/error.xhtml";
      trackid = "TRCK0001";
      udf1 = "Descrizione";
       StringEntity postParamsEntity = new StringEntity("id=" + id
       + "&password=" + password
       + "&action=" + action
       + "&amt=" + amt
       + "&currencycode=" + currencycode
       + "&langid=" + langid
       + "&responseurl=" + responseurl
       + "&errorurl" + errorurl
       + "&trackid" + trackid
       + "&udf1" + udf1);
      postParamsEntity.setContentType("application/x-www-form-urlencoded");
      postRequest.setEntity(postParamsEntity);
       DefaultHttpClient httpClient = new DefaultHttpClient();
       // Execute the HTTP POST
       System.out.println("Executing HTTP Post...\n");
       HttpResponse response = httpClient.execute(postRequest);
       // Check the HTTP status of the post.
       if (response.getStatusLine().getStatusCode() != 200 && response.getStatusLine().getStatusCode() != 201) {
       throw new RuntimeException("Failed: HTTP error code: "
       + response.getStatusLine().getStatusCode());
       // Create a reader to read in the HTTP post results.
       BufferedReader br = new BufferedReader(
       new InputStreamReader((response.getEntity().getContent())));
       // Read in all of the post results into a String.
       String output = "";
       Boolean keepGoing = true;
       while (keepGoing) {
       String currentLine = br.readLine();
       if (currentLine ==
    null) {
      keepGoing = false;
       } else {
      output += currentLine;
       System.out.println("Raw string result: \n" + output);
    The previous code works fine. I receive the response. But now I don't know how to continue. How can redirect the user to another site, and when the payment is finished, receive the response? Another question is, the user authenticate himself to access to the application. When the user will redirect to an external site, the glassfish session permits to get the response from the other host without require a new authentication?
    For the moment I don't know how to redirect the user, but I tried to write this method to obtain the last response:
      public void getResponse(HttpServletRequest request, HttpServletResponse response) {
      paymentId = request.getParameter("paymentid");
      result = request.getParameter("result");
      auth = request.getParameter("auth");
       ref = request.getParameter("ref");
      traind = request.getParameter("tranid");
      trackid = request.getParameter("trackid");
      udf1 = request.getParameter("udf1");
      responsecode = request.getParameter("responsecode");
    Is it correct?
    Thanks

    Now I'm able to redirect the user to the other page:
    ExternalContext externalContext = FacesContext.getCurrentInstance().getExternalContext();
    externalContext.redirect("http://stackoverflow.com");
    Now the problem is: once the user has finished to pay, the other site redirect the user to my site using one of the two JSF page I prepared for error or response like the following:
    <?xml version='1.0' encoding='UTF-8' ?>
    <!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <ui:composition xmlns:ui="http://java.sun.com/jsf/facelets"
                    template="./index.xhtml"
                    xmlns:h="http://java.sun.com/jsf/html"
                    xmlns:f="http://java.sun.com/jsf/core"
                    xmlns:rich="http://richfaces.org/rich"
                    xmlns:a4j="http://richfaces.org/a4j"
                    xmlns="http://www.w3.org/1999/xhtml"
                    xmlns:fn="http://java.sun.com/jsp/jstl/functions"
                    >
        <ui:define name="content">
            <center>
               An error occurred during  transaction
                #{participantBean.auth}<br />
                #{participantBean.responsecode}
            </center>
      </ui:define>
    </ui:composition>
    So, how can I get the GET parameters that the other host sent to me during the redirection?

  • How to send video message ?

    How do I send a picture or video message on 3GS ?
    thanks
    Pete
    London
    UK

    If you are on O2, you need MMS set up on the O2 end. Text "MMS" to 1010 for free and they will set it up.
    Once your account is set up, follow these instructions: http://www.apple.com/iphone/how-to/#messages.sharing-photos-and-videos

  • How to send videos through email on iphone 4

    How would you send a video saved in your pictures through email on iphone 4?

    Hey taushafromNJ,
    The following goes over how to share a picture or video, including via email:
    Share or copy a photo or video. View a photo or video, then tap . If you don’t see , tap the screen to show the controls.
    The size limit of attachments is determined by your service provider. iPhone may compress photo and video attachments, if necessary.You can also copy a photo or video, and then paste it into an email or text message (MMS or iMessage).
    via: Share photos and videos
    http://help.apple.com/iphone/7/#/iph3d2676c9
    All the best,
    Delgadoh

  • How to send Video from Premiere to Encore via Dynamic Link

    Hi there.  So I have the adobe suite for students, and I have a project in Premiere Pro, that I would like to make into a DVD.  I have exported before with MPEG-2 DVD, but that takes a lot of time and energy, and I don't think the export is as good as it could be (quality-wise).  So I would like to use Dynamic Link between Premiere and Encore, but when I go to File-Adobe Dynamic Link- the Dynamic link option is greyed out and I can't click on it which would let me choose "Send to Encore".  How can I make this option not greyed out and send it to Encore?  Thank you so much for your time!

    As the source is HD, then the output should be 16:9 widescreen, but you listed it as 4:3.
    In AME, choose "MPEG-2 DVD" and then "NTSC DV Wide Progressive" preset.
    Besides bitrate, generally don't touch other sliders unless you are experienced, use defaults.
    You CAN use the "Max Render Quality" checkbox at the bottom, as that helps with the downscale quality.
    While DVDs can theoretically handle a max data rate of roughly 10Mbps (video and audio together), not a good idea to push that limit - as mentioned previously, some players may choke on playback with burned media. Most users have stick to a maximum of 7 or 8 for the video encoding, and then use Dolby audio (Encore will automatically transcode PCM to Dolby).
    For longer videos over an hour, you may need to lower the bitrate to fit the material on the DVD. 560/minutes = bitrate works pretty well, just round down a little for safety margin. Example: 560/120=4.66 so use 4.5 average and good to go!
    Thanks
    Jeff Pulera
    Safe Harbor Computers

  • How to Send Video Using My MBA to my AV Receiver

    Hello. Are there component video cables that have a USB connection on one side..and a component videos connection on the other. Obviously I have a MBA, so I can't use the normal methods of sending mp3 videos files to my receiver.

    Sab8408,
    If you don't mind using a stereo connection (not surround), you can purchase a 3.5MM headphone to RCA cable from RadioShack (http://www.radioshack.com/product/index.jsp?productId=2110510&cp=2032058&f=Taxon omy%2FRSK%2F2032058&categoryId=2032058&kwCatId=2032058&kw=3.5+rca&parentPage=sea rch).If you buy one of these cables, I would suggest leaving the MBA's volume around 70-75% to prevent any distortion.

  • How to send video

    I recorded a 15 minutes video at my iPhone and need send it to my friends with iPhone, BlackBerry, Android phones. Is there any way to do it? Thanks,

    Qik Video Camera Pro ($2.99)
    link: http://itunes.apple.com/us/app/qik-video-camera-pro/id366276301?mt=8
    pronounced "quick"
    I've used it to upload a 13-minute video shot with my iphone camera app (idr the file size, but it would have been about same size as yours). Qik allows you to import an existing video to the app, and it will automatically compress it. I noticed no serious reduction in quality after this. Your original video remains untouched in your Photos album. Once imported, the compressed copy can be uploaded to various places, including Qik's own servers (a free signup is required, http://qik.com/info/overview). When the upload is done (it's reasonably quick... qik... haha), Qik provides you with a private link, and the option to email your friends with said link, to the video.
    It's worked for me. Good luck.

Maybe you are looking for