If you want to learn ActionScript in L.A.

A workshop worth checking out....
Releasing the ActionScripter Within with Phillip Kerman
Dates:               Fri +
Sat, July 14 + 15
Location:          The flash Factory
in Venice, California
Price:               
$490
A lot of people know about the cool stuff that's possible in
Flash, but they don't
know how to do it. In fact, they may have a very clear idea
what they want
but they don't know how to sort out the problem and execute
it. The
"programming" side of things can get tricky but usually it's
the planning
and design that's the most challenging.
Kerman will show common programming topics (variables,
arrays, functions,
ActionScript objects, class files) but I'll present it using
easy-to-understand analogies and with practical use-cases
where the students
will actually use this stuff. He will also spend a lot of
time on seeing the
consistencies in syntax so that you just learn the general
form instead of
learning the nitty gritty details of every variation. That
is, if you learn
the common syntaxes you can apply that knowledge to
additional topics that
you encounter.
Students will walk away feeling comfortable how to approach
and execute a
programming task. They'll be able to sort out a problem,
identify the
needed pieces, break down the programming into pieces, and
then--if not
build the whole thing--"stub" it in a way that parts work and
the remaining
tasks are clearly identified. Of course, it's best if a
student could
really build a huge application after this two-day course,
but even the most
advanced programmers build things in pieces and a big goal of
this class is
that they can see how to break things down.
Also, they'll get exposed to using code to control animation,
sound, and
video as well as the new BitmapData class and filters
package.
Visit the link below to sign up.
http://www.richmediainstitute.com/training/kerman/index.php
If you have any questions, email me, Jonathan Menendez,
[email protected] 

It warps an object based on the light or dark values of another file, or map. If you need to make a objects shadow conform to an irregular surface, the displace filter is perfect. It's useful to creating glass effects as well. Check through the previous posts in this thread for some links such as this fine tutorial.
http://www.thegoldenmean.com/technique/displace1.html

Similar Messages

  • If you want to learn the Displace Filter

    If you want to learn the Displace Filter
    Welles Goodrich
    - 09:45am May 9, 2004 Pacific
    Recently I decided to undertake a study of the Displace Filter and found three tutorials which were excellent.
    Steve's series of tutorials presents a wide variety of uses.
    http://www.gurusnetwork.com/tutorial/displace/
    Markzebra's guides you through using displace in animation.
    http://members.aol.com/markzebra/displace/
    Stroker's series of tutorials are perhaps the best if you are trying to comprehend how displace really works even if you are visually oriented. I've received permission to host a PDF download of this work which
    builds knowledge step by step with great good humor to boot!
    http://homepage.mac.com/wellesgoodrich/FileSharing2.html
    Cheers!
    Welles

    It warps an object based on the light or dark values of another file, or map. If you need to make a objects shadow conform to an irregular surface, the displace filter is perfect. It's useful to creating glass effects as well. Check through the previous posts in this thread for some links such as this fine tutorial.
    http://www.thegoldenmean.com/technique/displace1.html

  • HT201209 If you want to learn how to redeem an iTunes Store online Gift Certificate, refer to iTunes Store: How

    If you want to learn how to redeem an iTunes Store online Gift Certificate, refer to iTunes Store: How

    Do you have a question about redeeming a card ?

  • Learn Actionscript 3.0

    Hey,
    I want to learn Actionscript 3.0 because I have discovered
    that you can't do really nice flash stuff without knowing it. I
    have Flash CS3. I have no programming or language experience, I
    just know a little bit of HTML. What's the best way for me to go
    about learning actionscript?
    Thanks,

    eagledrc,
    > I want to learn Actionscript 3.0 because I have
    discovered
    > that you can't do really nice flash stuff without
    knowing it.
    AS3 is a tremendous, significant re-thinking and
    re-organization of the
    language. It's an improvement in terms of clarity,
    cohesiveness, and
    performace. In fact, at the risk of sounding like one of
    those late night
    plus-if-you-act-now commericials, I can honestly say that the
    more I use
    AS3, the more I appreciate it.
    That said, it's only fair -- to ActionScript and you! -- to
    mention that
    TONS of cool stuff can be done without ActionScript 3.0. For
    years now,
    people have been using pre-AS3 Flash to develop MP3 players,
    video players,
    scrolling platform games (like Mario Bros), multi-user games,
    particle
    effects, ebooks, interactive multimedia presentations,
    slideshows, and the
    list goes on. In many ways, the structure of AS3 makes it
    easier to work
    with, but in terms of actual features, I'll venture to say
    that only
    complex, advanced projects are likely to benefit from the
    speed increases.
    So ultimately, you have a choice. Many ad agencies and
    development
    houses are still publishing to Flash Player 7, just because
    the probability
    is a tad higher that a consumer has Flash Player 7 over 9. If
    you can
    publish for Flash Player 9, I'd say take the plunge and go
    with ActionScript
    3.0. I really think it makes more sense to newcomers than
    ActionScript 2.0
    as a new language. But all the same, keep a back burner open
    for AS2,
    because you're likely to run into files written in that
    version of the
    language for years to come.
    > I have Flash CS3. I have no programming or language
    experience,
    > I just know a little bit of HTML. What's the best way
    for me to go
    > about learning actionscript?
    If it's any encouragement, I didn't have any programming
    experience when
    I started out either. I came to Flash because I loved (and
    still love)
    multimedia. I've been fortunate enough to make a career out
    of (mostly)
    Flash, and the ability to program has certainly made that
    easier, as well as
    more creatively rewarding. If I could go back to an earlier
    me and give
    myself advice, I would steer me toward something called
    object-oriented
    programming (OOP). Even if that younger me didn't want to
    become a
    caffeine-addicted hardcore programmer, I would insist to
    myself that
    *thinking in terms of OOP* can help a developer make sense of
    the gargantuan
    document called the ActionScript 3.0 Language and Components
    Reference that
    lurks behind the F1 key.
    In the tiniest of nutshells, it can be put like this: the
    building
    blocks of ActionScript -- all the things you deal with, like
    movie clips,
    text fields, sounds, buttons, and so on -- are called
    objects. Objects are
    defined by something called classes, which are essentially
    blueprints for
    the objects they describe. Generally speaking, classes
    feature one or more
    of the following categories: properties (characteristics of
    the object),
    methods (things the object can do), and events (things the
    object can react
    to). Look for those headings when you flip through the
    documentation. If
    you're dealing with a movie clip, for example, look up the
    MovieClip class
    and see what features are available to you. Bear in mind that
    classes are
    organized into family trees -- they inherit functionality
    from ancestors --
    so make sure to click the "Show Inherited Public
    Properties/Methods/Events"
    hyperlink you'll find in each class entry. Without that, you
    won't get the
    full picture.
    Even if you don't write your own custom classes, you'll find
    that
    thinking in terms of a programmer -- thinking in terms of OOP
    -- will help
    you navigate the documentation.
    As far as books, I tend to like "Object-Oriented
    ActionScript 3.0"
    (friends of ED), by Todd Yard, Peter Elst, and Sas Jacobs.
    This one is
    geared toward programming and doesn't focus much on the Flash
    drawing tools.
    http://www.amazon.com/Object-Oriented-ActionScript-3-0-Todd-Yard/dp/1590598458/
    You may also get something out of "Foundation Flash CS3 for
    Designers"
    (friends of ED), which I wrote with my friend Tom Green.
    http://www.amazon.com/Foundation-Flash-CS3-Designers/dp/159059861X/
    Ours aims at striking a balance between programming and
    non-programming
    concepts. That doesn't make it better or worse reading
    material -- just
    gives it a different focus.
    I'm also a fan of Colin Moock's work (usually O'Reilly
    books), which
    tends to be extremely thorough, so take a gander at all of
    the above and
    read the reviews to see which one(s) may speak to your
    personal taste. Good
    luck with it!
    David Stiller
    Contributor, How to Cheat in Flash CS3
    http://tinyurl.com/2cp6na
    "Luck is the residue of good design."

  • For all the newbies who wants to learn Java

    I was a newbie like 4 months ago. i have some skills of OOP in C++ like 2 years back but since then i did'nt took any of programming language courses. I have experience in MSaccess and MYsql. i did my internship Last summer with Tennessee Education Lottery as a Database Analyst. At that time i realized what a Corporate Enviorment looks like. Trust me it was a formal interview and i passed it and they placed me in the IT department to write some scripts for the GUI terminal and at the same time create a Company Security Database. i did completed my project but i had to Learn Mysql. and then i realized Java was getting very popular. alot of people told me in the forums to go Java tutorial but i will not agree to start from the sun tutorial. you can do it only if you have a good or may be medium experience of OOP. it was really tough for me and then this magic guy came on the forum and told me to go on this website if you want to learn Java.
    http://chortle.ccsu.edu/java5/cs151java.html
    This site is a brilliant site specially the exercise problems and the quizes really attracted me to Java alot and now i came to realize how easy it is to program in Java rather than C++. Java forums have helped me alot in solving those exercise problems (not with the code but with a good explanation) which was very helpful for me. out of my 210 post i guess i have helped 30 people out and the rest of the questions are regarding those exercises. i came to know encapsulation, inheritance and all that stuff. though i am still not very perfect like i am still having trouble with ComparTo thing but it takes more practice. the more you practice the more you learn. so all the newbies if you really want to learn java even if you dont have any experience in OOp this is the site where you need to start. Hope this will definitely help you alot. thanks to all the Senior members navycoder, captain, paulcw, duffy, turingpest and others also who have helped me in the past. without you i would have not achieved the goal of learning java. now my next step is going to be learn GUI programming Swing. looks fun to me. but at the same time i have my final project for this semester to make on ONline Testing program which will have a database, php scripting and html and xml.
    I will post if i have any problems

    I was a newbie like 4 months ago. i have some skills
    of OOP in C++ like 2 years back but since then i
    did'nt took any of programming language courses. I
    have experience in MSaccess and MYsql. i did my
    internship Last summer with Tennessee Education
    Lottery as a Database Analyst. At that time i
    realized what a Corporate Enviorment looks like.
    Trust me it was a formal interview and i passed it
    and they placed me in the IT department to write some
    scripts for the GUI terminal and at the same time
    create a Company Security Database.Wow they really must like to gamble if they put you in charge of a security database - no offense meant, but that isn't the sort of thing you would want a brand new person working on, unless of course they were giving really high odds ;-)

  • Find people who wants to learn Korean

    Hi, I'm Korean college students, and I can speak Korean and English. It can be a great challenge to use skype to learn foreign language, both you and me. But if you want to talk about various topics, please contact me please. I want to learn Vietnamese, but if you want to learn about Korean, it's ok. please call me. I can contact 03:00 - 07:00 in GMT

    Hello,I'm Vietnamese.I can help you about learning Vietnamese.I know a little Korean, and want to learn more...If can, I and U can learn together...My skype id: [Removed for privacy]

  • I want to learn to design using Flash

    I have visited many Flash template sites and want to learn
    how to create sites like I see there. I have purchased many books
    and even some tutorial CDs and DVDs. However, they don't teach how
    to do really creative sites. They teach simple boring basics. How
    do I learn to make really cool sites that look beyond complex? Are
    there books or visual tutorials that are available?

    There's a general rule in art and design: You have to learn
    the rules before you can break them.
    In other words, you need to learn the
    boring basics or else you will never be able to design cool,
    creative sites. Simple as that. It's like saying you want to learn
    how to compose a symphony but don't want to be bothered learning
    how to read music or learn music theory.
    With Flash, the great thing is, the more of the boring basics
    you learn, the more that you'll be tempted to experiment and play
    around, and the creativity in you will be unleashed. At the same
    time just look at other sites that you like. The more you learn
    about Flash, the more you'll be able to figure out how it's done.
    You'll then be able to understand the lessons in advanced Flash
    training books and tutorials, which will enhance your
    skills.

  • I want to learn how to use ActionScript

    Where Am I With Flash?
    I have adobe Flash CS3 Professional.
    I have looked at the tutorials from the 'getting started'
    section of the Video Workshop DVD and understood them.
    I can do simple things like shape tweening, adding butons
    ect...
    I would like to be able to start adding script to my projects
    (ActionScript 3)
    I have almoast never programed before and certanly never
    programed with ActionScript
    I have an ambition to become a good ActionScript Programer so
    I can add interactive flash into websitess
    What Do I Want?
    To start with, I need to know how everything is set up within
    ActionScript 3 (what are variables and constants? How do you
    constuct an If statment? What imported events do what? ect...)
    I want to learn the above from a book (so I do not have to be
    at my computer to learn). It would be nice if the book came with a
    tutorial disk but this is not essential.
    I have looked at the book from the following URL -
    http://www.amazon.co.uk/Flash-ActionScript-Dummies-Doug-Sahlin/dp/0764508318/ref=pd_bbs_6? ie=UTF8&s=books&qid=1204548401&sr=8-6
    However, I'm not sure if this book is for programing in
    ActionScipt version 3 or another version (or for that matter
    weather the fact that it is for version 1,2 or 3 matters at all).
    One More Thing
    Also I would like to know some usefull websites that could
    help me besides the video workshop (which I have looked at).
    Thank You
    Ziggy

    Hi Ziggy,
    I suggest you take a look at "Learning ActionScript 3.0: A
    Beginner's
    Guide", by Rich Shupe and Zevan Rosser.
    It will give you great foundation and can help you build your
    skills
    from ground up.
    I have just barely read a few pages, so I'm basing myself on
    reviews
    from friends who are beginning into AS3.
    Furthermore, once you've got a good grasp on the basics, I
    think one of
    the most important part will be improving your skills on
    object oriented
    programming. There's no better way for that than learning it
    with your
    favorite language (and AS3 is perfect for that).
    I strongly suggest at that point, that you acquire Colin
    Moock's
    "Essential Actionscript 3" from O'Reilly's. It's a difficult
    book but
    don't get discouraged, and keep on reading and re-reading the
    chapters
    and studying the examples until you finally get it.
    It will help get your feet into OOP, necessary if you are
    serious in
    AS3, and I can guarantee you although you might feel
    disturbed for not
    understanding everything right away, it is only because it
    covers the
    topics very thoroughly, and you'll end up understanding many
    important
    concepts by re-reading it over the months/years of your
    practice.
    That book is a bible (like all previous from the author)...
    once you get
    to an intermediate level, you'll most likely rarely read any
    other
    (except for very specific topics it doesn't cover), and you
    will often
    refer to the AS help to know all of the classes and functions
    you'll
    come to need, since you'll be fully able to understand them.
    Good luck!

  • I want to learn SD , Could you pls send me the Reference Book names.

    Hi All,
    I want to learn SD , Could you pls send me the Reference Book names.
    and i heard about materials like Billing , Pricing , Shipping - Which material should i study first to understand baisc flow.
    Thanks in Advance.
    Regards,
    Nithi.

    Hi ,
    Instaed of a book i will refer you the help files of SAP .
    You can get there files at http://help.sap.com/
    An for SD the link is http://help.sap.com/saphelp_47x200/helpdata/en/92/df293581dc1f79e10000009b38f889/frameset.htm
    These files will help you a lot .
    even today also SD gurus take help from these files only.
    Regards

  • I am a teacher of mathematics and i have a windows pc, but i want to do the next step. I want to buy an iMac. I want to learn how to write mathematical equations and how to do geometrical schema in my documents with iMac. Help me please!!! Thank you very

    I am a teacher of mathematics and i have a windows pc, but i want to do the next step. I want to buy an iMac. I want to learn how to write mathematical equations and how to do geometrical schema in my documents with iMac. Help me please!!! Thank you very much!!!

    Bonjour VAGRAI
    1) To write math expressions in a text :
         — Microsoft Office 2011 etc. for Mac use its included Equation Editor.
         — OpenOffice.org (OOo) and NeoOffice : download free Dmath 3.3.
         — iWork (Pages, Numbers, Keynote), download free MathType 6.7, fully functional for 30 days, then becomes « Lite » for life as good as the Microsoft equation editor ; it’s better than using Grapher’s equation editor (Applications > Utilities) because MathType can be called from Pages and allows editing equations by clicking the math expressions your text (details on MathType website) .
         — Graph.app 2.3 in Mountain Lion is built to draw curves and surfaces from equations, so it uses an equation editor less powerful than mathType, but it’s easier typing expressions. You may get 2D 3D geometrical drawings from clever equations. Suggest a glance at   http://y.barois.free.fr/grapher/  to know all about Grapher (83 pages Instructions for Use - Grapher) and some examples
      2) Geometrical schema :
         — GeoGebra is very popular and used by math teachers.
         — Google SketchUp 8 was not built for mathematics but for architecture, but it’s very easy using it to draw 2D 3D surfaces and solid figures.
         — ShapeOnYou.app allows simples geometrical figures  http://pierre.chachatelier.fr/programmation/shapeonyou_en.php
    3) Some useful websites for screen shots of geometrical schema :
         http://www.mathcurve.com/
         http://perso.orange.fr/roger.assouly/
    Drawings files PDF, TIFF, JPG … can be inserted in an iWork window (Pages).
    I hate LaTex : not necessary to write math books !  
    Au revoir VAGRAI,
    YB24
    Attachment : lines and curves were made with Google SketchUp 8, screen copied (Command-Shift-4), inserted on a Pages sheet to add letters figures rectangles title.
    SketchUp allows drawing precisely an arc of circle 325 mm radius 22,5° angle for instance. 

  • Wanna learn Actionscript.3.0 along with game development?

    hi guys, i am sharing some best books to learn AS.3.0 along with game development including box2d.
    best books ever.....(over 7 large pdf books)
    you can build complete games from these pdf books.
    you need flash professional CS4 or above. you can still use it with CS3...
    see this video for links and book covers:
    http://www.youtube.com/watch?v=fHzVBud3ah4

    Dave,
    > OK, so that sort of helps. I downloaded and installed it
    > but when I went to create components like I have in my
    > Flash 8.0 application I am writing, there are none
    available.
    Those are the v2 UI Components, which means they're written
    in
    ActionScript 2.0 and are therefore incompatible with AS3.
    Using that
    special version of Flash, you may still publish in AS2 if you
    like (see
    Publish Settings), in which case those Components will
    reappear.
    > Is this a watered down version so you can't do anything
    > with forms.
    What you have is not a watered down version at all. Rather,
    it's a
    souped up version of Flash 8, which is otherwise not capable
    of publishing
    for Flash Player 9 (in other words, ActionScript 3.0). The
    title is a
    mouthful, but Flash Professional 9 ActionScript 3.0 Preview
    is a *preview
    release* of Flash 9, which gives every indication that the
    next full release
    of Flash will support ActionScript 3.0, and presumably new
    AS3-based
    Components to match.
    > Does this force me to have to get Flex2? I hope not.
    Of course not! ;) If you want to develop with AS3 now
    already, then
    you'll have to do it with something that can compile Flash 9
    SWFs. Flex
    Builder 2 is an IDE and costs money, but the compiler (Flex 2
    SDK) itself is
    freeware.
    http://www.adobe.com/products/flex/sdk/
    If you can wait for Flash 9, then that could be yet another
    choice --
    presumably improved upon the preview release in your hands.
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • Should I bother learning Actionscript 2 since there's actionscript 3?

    I've been toying around with flash for years, making animations mostly. I want to start making games though, because I'm majoring in videogame animation and I know I'm going to have actionscripting classes. I just wanted to know if learning actionscript 2 would do more harm than good since there's actionscript 3 now. And what are the differences?

    Well, I use AS2 because I feel it is easier to make games with. With AS2 you can add actions to ANY object. For instance, if you want to make a simple button, you just use the actions panel ON THAT OBJECT and type a simple code:
    on(release){
    _root.goToAndPlay(2);
    If you were using AS3, you HAVE to use the actions panel at the top. You can't have any actions in an object.
    It all depends on what you feel, I would recomend learning both, it is always best!

  • Learning ActionScript for developing FLASH Games

    Hi ,
    I dont whether i can post this question here or there is any other Forum for ActionScript , if so sorry for that .
    Now to the question , I know some what ActionScript like Events , custom UI Components , and classes  as required for simple FLEX development .
    To what extent we need to learn ActionScript to develop Flash Games ??
    Can anybody suggest me as where to start with , what is the correct approach and is there any IDE avialable for that .
    Please share your ideas on this     

    hi,
    Depends on what sort of games you want to write, firstly you will definitely need to become familiar with actionscript, most gaming and 3d engines for flash games are done in pure actionscript. You can developer your games in flex even if you don't uses mxml basically the real power of games is in the code which means actionscript.
    http://pushbuttonengine.com/  a gaming engine for flex/ flash
    http://away3d.com/  3d engine for flex/flash
    http://www.flashrealtime.com/flash-game-library-engine-list/   a site that will have you reading lots of interesting stuff.
    David.

  • Want to learn how to do Dolby 5.1 without paying for Surcode?

    If you have ever been interested in trying Dolby 5.1 in a Premiere Pro project that you can export out to a file or Blu-Ray, it is actually easier than you think. There are some very specific steps you need to take to make it work however and there is one very annoying issue that I have escalated with Adobe, but I have found a workaround that is quite effective. My goal of starting this thread is to help others save time discovering all the trial and error I have gone through and also hope others will chime in with any additional information and help with the elusive problem of getting files to play correctly on the ps3. I may make a video to demonstrate if there is enough interest.
    Step 1: Setup Audition and Premiere Pro for ASIO and map speakers
    You will need to ensure both Premiere Pro and Audition are setup using ASIO for your audio hardware. ASIO will allow you to directly access your sound cards. Depending on your sound card vendor, you may have to install ASIO drivers. In my case, I have a Creative Labs Titanium and they are installed with the sound card drivers. To select in Audition, go to preferences, click on Audio Hardware and under the device class, select ASIO, and under Device, select your ASIO driver. You may also need to map your channels. Under preferences, select Audio Channel Mapping and select the following:
    File Channels      Device Channels
    1[L]                     Front L/R
    2[R]                     Front L/R
    3[C]                     Front C/Sub
    4[LFE]                 Front C/Sub
    5[Ls]                    Rear L/R
    6[Rs]                    Rear L/R
    While this may look strange at first, it is pretty straight forward. On the left are the channels internal, and the right are the speakers it will send the sound to. Front L/R actually are actually the individual Left and Right Channels, for some reason they label them both as L/R. When you select the pull-out you will see two entries for Front L/R, the first one is your left channel, the second one is the right channel. The same thing applies to the Front C and Rear L/R labels.
    For Premiere Pro, under preferences, choose Audio and select the 5.1 Mixdown type of Front+Rear+LFE. For Audio Hardware, again select your ASIO driver. Under Audio Output Mapping, also select your ASIO driver.
    Step 2: Setup your Premiere Pro Project correct.
    a) This one took a bit of looking into and I am proud to say I figured it out before Adobe tech support. For some reason my 5.1 channel would play correctly in audition, but would always play back in Stereo through Premiere, even though it was on a 5.1 audio track. So, the important thing to remember is your "Master" audio has to be set to 5.1. There are more sophisticated methods using submixes, but I will add those to this thread once I experiment with that. Anyway, you can't change a sequence after the fact, so create a new Sequence and under the "Tracks" tab, make sure the master is 5.1.
    b) Now drag your video track onto the new sequence and it will be on a Stereo track...no problem, under the edit menu, select edit->edit in Adobe Audition, and select either the entire sequence or just that clip.
    c) Now click the Multitrack button while in Audition and it will prompt you for a session name. Under Master, choose 5.1.
    d) In Audition, in the files tab, drag your .wav file up into one of the tracks. Cool part is there is a little symbol next to the track label that looks like a diving helmet, click on that and a Track Panner window will come up. You can drag the bubbles around and it will visually show you where the sound will appear. By default the stereo will show sound going to the front left and right channels. I usually pull back a bit and let the sound go into the center channel as well. You can move the sound bubbles around and put the sound wherever you want. If you want to turn off a speaker specifically, then click the little lines next to the speaker representations. Anyway, it is pretty intuitive, but as I mentioned, if there is enough interest I will make this into a training video.
    e) Drag any other sound files or special effects you want onto the other tracks and you can control where that sound goes as well using the same method as decribed in step d.  You will need at least two tracks populated so just drag the same .wav file or add a sound effect or something to another track.
    f) When you are ready to send it back to Premiere Pro, from the MultiTrack menu, select Export to Adobe Premiere Pro. When prompted select "Mixdown session to:: and select 5.1 file.(You have to have at least two tracks for this to work).
    g) Now choose export and when you are back into Premiere, you can select to have it brought into a new track, or an existing one (just make sure it is 5.1 if you go to an existing one).
    h) Now turn off the original stereo track and when you play it back, it should play back in surround sound in Premiere. Choose Window->Workspace->Audio and it will bring up the mixer window. When you play it, for your 5.1 tracks you can see all 5 channels and which channels are being played.
    i) So far so good, the ultimate goal of course is to somehow get it exported to play. If you want to play it on your computer, you have a few choices. You can use Quicktime, H.264 and there are probably a few others. I had the best luck exporting in H.264(the non blu ray option), make sure to export channels to 5.1 and it plays back nicely in Windows Media Player as well and iTunes and uses .aac as the audio codec. It does not play back correctly in Quicktime however, it will play back in Stereo, although I think there is an update that corrects this now (haven't tested it yet).
    j) Ok, that is nice, but my goal was to be able to play it back on my PS3 in my media room, and it didn't recognize any of the 5.1 formats I exported (and I tried several), I couldn't find a combination that it would play at all (video or audio), so it would be great if someone could add to this thread if they know some specific settings that would work (stereo or 5.1). I would really like to be able to serve up the video over the network in 5.1, but I am not hopeful that I will get there...perhaps someone else can figure it out.
    k) Ok, so I know the PS3 will play Dolby via Blu-Ray, so I export my project to Encore but I discover that if Encore has to re-encode the audio, it will always convert it to Stereo, and the only format that it will bring in is an .ac3 file that has the dolby embedded in it. If dolby is already embedded in the .ac3 file, it will play it just fine. For Video, it is easy, just select H.264 Video - Blu Ray. Now, when you go down to the Audio tab you will see a choice for the Codec of SurCode for Dolby Digital. This will actually send out a dolby 5.1 audio .ac3 file...isn't that wonderful? The bad news is, this does not come with your product, you have to shell out another $300 for this privilege. You can trial it for 3 times, but it won't show up as having any available unless you right click on Premiere Pro when you launch it and launch it in administrative mode. When you perform the export and select Surcode, it will do it correctly and you can bring it into Encore which will not retranscode and it works great.  I dont' know about you, but I purchased the full Master Collection and I think it is crazy that Adobe allows you to create and edit in 5.1, but not export it without paying more money. I have filed a complaint, but have not heard back...Adobe technical support also confirmed this is your only option. 
    However, there is another option. There is a program called OJOSoft Audio Converter
    http://www.ojosoft.com/help/help-audio-converter.html
    and it only costs $22. It will convert a .aac 5.1 encoded file and convert it to a .ac3 file..dolby intact! When you lauch it, you just need to remember to click the edit button under the ac3 profile and select "original" under the number of channels. It works great...it doesn't have the same number of options as Surcode, but it does work. I am still mad about the whole Surcode thing, but am hopeful that Adobe will make it right and include it at least in the Master Collection for goodness sakes.
    l) So, the trick is when you export the video using H.264 blu ray, uncheck the export audio. Then choose the "Audio Only" format when you export again, and select 5.1 Channles and I increase the Bitrate to 192 for better quality, this will export a .aac file with the 5.1 embedded. Then just run the OJOSoft converter and bring the converted .ac3 file into Encore. Burn away to blu-ray and you are good to go.
    In conclusion, I hope this helps others and if you have more tricks or tips, please add to this thread, I am particularly interested in anyone that can figure out a format that will play over the netowork to a PS3 (Heck I will even take Stereo at this point, but the dream is 5.1).
    Enjoy

    Hi there,
    just checking my DD Options for a concert I have recorded with our choir (non Commercial stuff that is) but what irritates me, maybe because your Version of Premiere CC  has been altered, is the following:
    " Then choose the "Audio Only" format when you export again, and select 5.1 Channles and I increase ...."
    I can unclick Video Export and just leave Export Audio. And if I click Dolby Digital that is the closest I get to it. My Master says 5.1 as I have changed all relevant layers from Stereo into 5.1 and the Levels give me 5.1 as well, but I can neither see any "Audio Only" Format and not choose 5.1 Channels at all. And it does not make any difference wheather I choose the Queue-Option for the media Encoder or Export it straight away. So how come that you got more Options? However, when I could create a "Dolby Digital" (Stereo) file (that Comes up in Premiere) it gives me the ending AC3, but according to my Screen it will only be Stereo. And last time I tried it (some month ago) all I got was noises .... instead of Stereo.
    First I wanted to download the Trial Version of Surcode (yet I am not even sure which one to pick from their webside ... the normal 5.1 code? And then: a few weeks ago, when I started hunting down Options for 5.1 sounds (actually it is mostly the audience "noise" that has to come from the Speakers) I learned from one webside that Pinnacle for their studio and the Surcode would only cost like 10 Dollars extra and some People would ask why on Earth are they getting that Option whilst Adobe is charging a month income (well a Little less). So maybe Pinnacle has much better Connections to that Company. Yet, if I look at other Prices they have, then only companies who are well off, can afford that. Or rich People. So as a private Person, who want to give People "simple" Surround Sound, that has become so normal, is basically screwed.
    However: I wonder if I can get any advice. Currently I do render all stuff with the Options I have (yet for iPad, the QuickTime-Option has to be done seperately because there is no Action in the Encoder if I put it in the Queue. BluRay and DVD have been accepted but no Quicktime. Well I still got til the Weekend to get it sorted and then the 4-disc-set (BD, DVD, DVD-Rom (with files for iPad, iPhone, Android in various sizes as People have various RAM on their devices) and CD - already delivered) will have to be ready.
    Thanks for any reply in advance.
    Ronnie

  • Do you want to work with Alister Chapman in Austin, Texas?

    Omega - Events - FilmCraft Workshops with Alister Chapman
    Omega Broadcast Group Presents:
    CineShops FilmCraft Workshops with Alister Chapman
    Featuring the Sony PMW-F5, NEX-FS700 and PMW-200
    CineShops FilmCraft Workshop with Alister Chapman
    About Alister Chapman
    Alister Chapman is a highly regarded, award winning director of photography with over 20 years of experience in broadcast television and commercials. He is a Sony I.C.E (independent Certified Expert) as well as a guest lecturer at Singapore Polytechnic, the V.I. Academy, Santa Fe and the F-Stop Academy. He is a great educator and able to very clearly and simply explain sometimes difficult principles. He runs workshops all over the world, as a working cameraman and DoP his expertise comes from the real world of video and film production. This means that not only will you become a better shooter but you will also learn about how crews work on larger productions, how to pitch for commissions and how to make money from your productions.
    Event Details and Session Descriptions, sign up for 1, 2 or all 3!
    Saturday, December 7
    From Hobbyist to Pro-Shooter, learn what it takes to turn your hobby into a profession.
    You love shooting video for fun and now you are thinking of turning that into a business. What do you need to do, how do you start? Learn the techniques that help turn an amateur into a pro, how to shoot and prepare a show reel and how to pitch for work.
    Who is this workshop for: Anyone!
    Monday, December 9
    Advanced shooting techniques for the modern filmmaker.
    Discover how to spice up your video productions using clever but surprisingly easy shooting methods including time-lapse, slow motion, green screen and motion control. In the past these techniques were expensive and difficult. Today they are within almost everyone’s grasp. In this workshop you will learn how make the most of these exciting creative tools. We will spend time in the classroom and studio learning the principles behind these methods. In the evening we will put it all into practice with an evening shoot where we combine time-lapse, motion control and green screen to produce a cleverly composite scene.
    Who is this workshop for: Anyone! You don't need to have any previous film making experience to learn a great deal during this workshop. However some experience of basic video shooting or still photography is beneficial. We will provide a basic motion control rig and a selection of cameras, but if you have a DSLR or time-lapse capable camcorder you might want to bring that along.
    Tuesday, December 10
    Modern Digital Cinematography Techniques.
    This workshop is for videographers, digital imaging technicians and cinematographers that are interested in learning more about the latest camera technologies. Learn about shooting using Log gamma, raw and 4K. What are the differences between conventional gammas, log and raw and how does it affect the entire production. Discover how to work with LUT's (look Up Tables) and "Looks". Find out how to correctly use the ACES workflow (Academy Color Encoding System) to gain consistency between different cameras and standardize your workflow. Learn how to safely manage the large amounts of data that can be generated by a modern digital cinema camera and then how to grade the footage using DaVinci Resolve.
    Who is this workshop for: Intermediate to advanced content creators!
    This is an opportunity not to be missed. A chance to hone existing skills, learn new techniques, improve your knowledge of camera setups and how they effect post production or find out how a modern film crew work together as a team.

    We interviewed Alister and some of the participants after they produced this music video for a local band:
    Interview: 
    https://vimeo.com/80512703
    Music video:
    vimeo.com/57591968
    Alister returns to Austin for 3 exciting workshops December 7 - 10, 2013. Register now to attend!
    omegabroadcast.com/fmp/events-detail.php?&-recid=343

Maybe you are looking for

  • I bought an iPhone 5s in China and the maps app is different.  When I go to the US will I be able to use Apple's native app or will I be stuck with this one?

    So I wanted to ask a question that my googlefoo couldn't help me solve. I bought an iphone at a reputable electronics market here in China and it is an AT&T model phone.  I bought it at one of the grey market locations because they were sold out else

  • MIGO : Error when copying batch characteristics

    Hi, I've some problem on MIGO Tcode when i want to copy the batch characteristics. I work with class type 022. I create a GR from PO. (movement 101). My item line contained sub-items (with BOM). So i would like to copy the batch characteristics in re

  • Navigation shortcuts in Adobe Bridge on mac.

    Hello Everyone. I need to set CMD+] and CMD+[ as back/forward shortcuts as they used in Mac OS. But in Bridge this shortcuts used for image rotation. How can i fix it? Any ideas?

  • BDC with BAPI

    How to upload the data by using BAPI Function Module in BDC. The FM i am using is : BAPI_ACC_DOCUMENT_POST. so, by using that FM, with BDC how to i post the GL Accounts Thanks Krupali

  • XD02 and FD02- tax

    Hello SAP Gurus' I have a problem I hope you can help me with.  We use TAXWARE and when we input the exemption or resale number/ tax number via XD02, it changes for all co.codes???  We only want a change to the co.code we have entered and it appears