[sound] Select audio canal for each application [solved]

Hi all
After a long and unsuccessful search on the net I decide to post my question here.
I have a motherboard with the HDA chipset (4 output in the back) and I want to choose for each application the output.
For example : my music on the Master output (plugged to amp),  my video on the Suround output (plugged to a helmet), all the other apps on the Side output (plugged to speakers) ...
I am actually whith ALSA and Pulseaudio, but I am ready to change all to do that (except the ditrib )
Thanks in advance
(sorry if my english is poor, I am french)
Last edited by sauliwx (2014-09-12 13:43:09)

 My bad, clipboard must have been turned off or I simply confused the links. Here the correct one, once again. Runtime arguments allow you to specify a pcm with parameters set upon execution:
speaker-test -c 2 -t wav -D plug:"dmix:{CARD DG DEV 0}"
# CARD D is one argument and DEV 0 the other. The original dmix takes more arguments
# see /usr/share/alsa/pcm/dmix.conf
# The one I proposed takes also channels number as runtime argument like so
speaker-test -c 8 -t wav -D plug:"dmix:{CARD SB DEV 0 SUBDEV -1 FORMAT S32_LE RATE 192000 CHANNELS 8}"
 The more important thing is dsnoop, otherwise you might have problems when recording. This kind of configuration may end up similar to this proposed one. Similar when it comes to logical structure that is. You might want to try build your configuration into the latter one. Instead of this:
default {
# use pulse as default
type pulse
fallback "sysdefault"
hint {
show on
description "Default ALSA Output (currently PulseAudio Sound Server)"
 try this based on your part:
default {
type asym;
playback.pcm "green";
capture.pcm "dsnoop1";
fallback "sysdefault"
hint {
show on
description "Default ALSA Output (currently green)"
 You had no asym type plugin in there.
Edit: "fallback" might not only be unnecessary, it might conflict or cause an error within the configuration. Untested.
Last edited by emeres (2014-09-17 16:13:40)

Similar Messages

  • Nested for-each issue [Solved]

    Hi.
    First of all, just started looking into xsl, so please explain things carefully.
    I need to make a master-detail form, but the xml is a bit tricky.
    I've made a demo here:
    <DATASET>
    <ROWSET1>
    <ROW>
    <ID>1</ID>
    <NAME>Harry Potter</NAME>
    </ROW>
    <ROW>
    <ID>2</ID>
    <NAME>Draco Malfoy</NAME>
    </ROW>
    </ROWSET1>
    <ROWSET2>
    <ROW_R2>
    <OWNER_ID>1</OWNER_ID>
    <PC>HP</PC>
    </ROW_R2>
    <ROW_R2>
    <OWNER_ID>1</OWNER_ID>
    <PC>Dell</PC>
    </ROW_R2>
    <ROW_R2>
    <OWNER_ID>2</OWNER_ID>
    <PC>Compaq</PC>
    </ROW_R2>
    </ROWSET2>
    </DATASET>
    Here's what I want printed:
    Harry Potter
    -HP
    -Dell
    Draco Malfoy
    -Compaq
    Here's how I've tried making my xsl and if's for joining.
    <xsl:for-each select="DATASET/ROWSET1/ROW">
    <xsl:value-of select="NAME"/>
    <xsl:for-each select="../../ROWSET2/ROW_R2">
    <xsl:if test=" ../../ROWSET1/ROW/ID = OWNER_ID">
    <xsl:text>ID: </xsl:text><xsl:value-of select="../../ROWSET1/ROW/ID"/>
    <xsl:text>OWNER_ID: </xsl:text><xsl:value-of select="OWNER_ID"/>
    <xsl:text>PC: </xsl:text><xsl:value-of select="PC"/>
    </xsl:if>
    </xsl:for-each>
    </xsl:for-each>
    This only outputs
    Harry Potter
    Draco Malfoy
    If I remove the if/end if, it outputs
    Harry Potter
    ID:1 Owner_ID:1 PC:HP
    ID:1 Owner_ID:1 PC:Dell
    ID:1 Owner_ID:2 PC:Compaq
    Draco Malfoy
    ID:1 Owner_ID:1 PC:HP
    ID:1 Owner_ID:1 PC:Dell
    ID:1 Owner_ID:2 PC:Compaq
    Obviously there's a couple of things wrong, so if anyone could help out I'd be greatful.
    I know it's a bit tacky looping through twice to find matching id vs owner_id, but with this kind of xml I don't know any other way, and I can't change the xml. Fortunately it's not that much data so it shouldn't be too slow.
    Cheers,
    Vidar
    Message was edited by:
    Vidar
    :added solved to subject

    A solution that works is to great a for-each loop table using ROWSET1 and setting a variable to the ID value. Then put a nested for-each loop inside the first using ROWSET2 and using a filter on the for-each to filter for OWNER_ID like this:
    <?for-each:/DATASET/ROWSET2/ROW_R2[xdoxslt:get_variable($_XDOCTX, 'x')=OWNER_ID]?>
    for template then looks like the following:
    inialize variable 'x'
    for-each ROWSET1
    NAME
    ID set 'x'
    for-each ROWSET2[filter]
    OWNER ID PC
    end for-each
    end for-each

  • Where can I find the file sizes for each application before downloading?

    Where can I find the file sizes for each application before downloading? I have limited download (525 MBs/day) because of Hughsnet and I need to know each applications total size before I download.

    You can go to the trial page to get an estimated size.  As the Creative Cloud products change over time though this may become less accurate.
    If you are on a limited bandwidth account then you may want to consider purchasing a perpetual copy of Creative Suite 6 as opposed to subscribing to the Creative Cloud.

  • [svn:fx-trunk] 10050: Per-Module Style Management: Create a style manager for each application/module.

    Revision: 10050
    Author:   [email protected]
    Date:     2009-09-08 07:43:16 -0700 (Tue, 08 Sep 2009)
    Log Message:
    Per-Module Style Management: Create a style manager for each application/module.
    The singleton StyleManager is still the only style manager that is currently used.
    QE notes: None.
    Doc notes: None.
    Bugs:
    Reviewer: Alex
    Tests run: checkintests, Managers/StyleManager
    Is noteworthy for integration: no
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/SWFLoader.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/FlexModuleFactory.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/IFlexModuleFactory.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/events/Request.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/ISystemManager.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/modules/IModuleInfo.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/modules/ModuleLoader.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/modules/ModuleManager.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/IStyleManager2.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/StyleManagerImpl.as
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/lang/StandardDefs.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/PreLink.java

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • Select last value for each day from table

    Hi!
    I have a table that stores several measures for each day. I need two queries against this table and I am not quite sure how to write them.
    The table stores these lines (sample data)
    *DateCol1                 Value       Database*
    27.09.2009 12:00:00       100           DB1
    27.09.2009 20:00:00       150           DB1
    27.09.2009 12:00:00       1000          DB2
    27.09.2009 20:00:00       1100          DB2
    28.09.2009 12:00:00       200           DB1
    28.09.2009 20:00:00       220           DB1
    28.09.2009 12:00:00       1500          DB2
    28.09.2009 20:00:00       2000          DB2Explanation of data in the sample table:
    We measure the size of the data files belonging to each database one or more times each day. The value column shows the size of the database files for each database at a given time (European format for date in DateCol1).
    What I need:
    Query 1:
    The query should return the latest measurement for each day and database. Like this:
    *DateCol1       Value      Database*
    27.09.2009        150          DB1
    27.09.2009       1100          DB2
    28.09.2009        220          DB1
    28.09.2009       2000          DB2Query 2:
    The query should return the average measurement for each day and database. Like this:
    *DateCol1       Value      Database*
    27.09.2009       125          DB1
    27.09.2009      1050          DB2
    28.09.2009       210          DB1
    28.09.2009      1750          DB2Could someone please help me to write these two queries?
    Please let me know if you need further information.
    Edited by: user7066552 on Sep 29, 2009 10:17 AM
    Edited by: user7066552 on Sep 29, 2009 10:17 AM

    For first query you can use analytic function and solve it.
    with t
    as
    select to_date('27.09.2009 12:00:00', 'dd.mm.yyyy hh24:mi:ss') dt,       100 val,           'DB1' db from dual union all
    select to_date('27.09.2009 20:00:00', 'dd.mm.yyyy hh24:mi:ss'),       150,           'DB1' from dual union all
    select to_date('27.09.2009 12:00:00', 'dd.mm.yyyy hh24:mi:ss'),       1000,          'DB2' from dual union all
    select to_date('27.09.2009 20:00:00', 'dd.mm.yyyy hh24:mi:ss'),       1100,          'DB2' from dual union all
    select to_date('28.09.2009 12:00:00', 'dd.mm.yyyy hh24:mi:ss'),       200,           'DB1' from dual union all
    select to_date('28.09.2009 20:00:00', 'dd.mm.yyyy hh24:mi:ss'),       220,           'DB1' from dual union all
    select to_date('28.09.2009 12:00:00', 'dd.mm.yyyy hh24:mi:ss'),       1500,          'DB2' from dual union all
    select to_date('28.09.2009 20:00:00', 'dd.mm.yyyy hh24:mi:ss'),       2000,          'DB2' from dual
    select dt, val, db
      from (
    select row_number() over(partition by trunc(dt), db order by dt) rno,
           count(*) over(partition by trunc(dt), db) cnt,
           t.*
      from t)
    where rno = cntFor second you can just group by
    with t
    as
    select to_date('27.09.2009 12:00:00', 'dd.mm.yyyy hh24:mi:ss') dt,       100 val,           'DB1' db from dual union all
    select to_date('27.09.2009 20:00:00', 'dd.mm.yyyy hh24:mi:ss'),       150,           'DB1' from dual union all
    select to_date('27.09.2009 12:00:00', 'dd.mm.yyyy hh24:mi:ss'),       1000,          'DB2' from dual union all
    select to_date('27.09.2009 20:00:00', 'dd.mm.yyyy hh24:mi:ss'),       1100,          'DB2' from dual union all
    select to_date('28.09.2009 12:00:00', 'dd.mm.yyyy hh24:mi:ss'),       200,           'DB1' from dual union all
    select to_date('28.09.2009 20:00:00', 'dd.mm.yyyy hh24:mi:ss'),       220,           'DB1' from dual union all
    select to_date('28.09.2009 12:00:00', 'dd.mm.yyyy hh24:mi:ss'),       1500,          'DB2' from dual union all
    select to_date('28.09.2009 20:00:00', 'dd.mm.yyyy hh24:mi:ss'),       2000,          'DB2' from dual
    select trunc(dt) dt, avg(val) val, db
      from t
    group by trunc(dt), db
    order by trunc(dt)

  • Printer stopped working. Different error messages for each application.

    Hello. Recently I have been unable to print anything from any application and get different error messages from each application. For example:
    Word says "Word cannot print due to a problem with the current printer. Make sure you have a printer selected in Print Canter. You may need to print again or adjust your printer settings."
    Entourage says "An error occurred while printing. Not enough memory."
    Excel says "Microsoft Excel could not communicate with the printer."
    Preview says "Print. Error while printing."
    I have tried installing new drivers, repairing the disk and permissions, and deleting and adding the printer from the System Preferences.
    I am running OS X 14.4.10 on an iMac G4 1.25 GHz PowerPC with 256 MB DDR SDRAM.
    Any ideas? Thanks.

    Try downloading the 10.4.10 Combination Updater from Apple and re-update.
    If that doesn't help try the free trial of Printer Setup Repair from www.fixamac.net.
    If those don't help, reinstall OS X using the Archive & Install option in the installer.

  • Select one record for each member of the group

    Hi,
    am having a table where in i will be having data for so many group members. i need to fetch data for a particular group members whose number of rows of data may be more in numbers (but i want only one row of data for each member of the group)
    here is the query for fetching all rows of data
    select RI.RESOURCE_NAME,TR.MSISDN,TR.ADDRESS1_GOOGLE, TR.MSG_DATE_INFO, FROM TRACKING_REPORT TR, RESOURCE_INFO RI
    WHERE TR.MSISDN IN (SELECT MSISDN FROM RESOURCE_INFO WHERE GROUP_ID ='1' AND COM_ID=2 ) AND RI.MSISDN=TR.MSISDN
    order by MSG_DATE_INFOoutput of this query is...
    >
    ddd     12345          13-Mar-10 19:43:03
    eee     54321     Tamil Nadu, India      13-Mar-10 19:39:48
    ddd     12345          13-Mar-10 19:32:58
    eee     54321     Tamil Nadu, India      13-Mar-10 19:30:07
    ddd     12345          13-Mar-10 19:23:08
    eee     54321     Tamil Nadu, India      13-Mar-10 19:20:14
    fff     98765          13-Mar-10 19:19:22
    ddd     12345          13-Mar-10 19:13:01
    eee     54321     Tamil Nadu, India      13-Mar-10 19:09:50
    ddd     12345          13-Mar-10 19:02:56
    eee     54321     tn,ind      13-Mar-10 18:59:49
    ddd     12345          13-Mar-10 18:53:08
    eee     54321     tn,ind      13-Mar-10 18:49:50
    ddd     12345          13-Mar-10 18:42:56
    eee     54321     tn,ind      13-Mar-10 18:39:50
    ddd     12345          13-Mar-10 18:33:00
    eee     54321     tn,ind      13-Mar-10 18:29:50
    ddd     12345          13-Mar-10 18:22:54
    eee     54321     tn,ind      13-Mar-10 18:19:50
    ddd     12345          13-Mar-10 18:12:56
    eee     54321     tn,ind      13-Mar-10 18:09:50
    ddd     12345          13-Mar-10 18:02:54
    eee     54321     tn,ind      13-Mar-10 18:00:02
    fff     98765     Tamil Nadu, India      13-Mar-10 17:59:26
    fff     98765     Tamil Nadu, India      13-Mar-10 17:54:26
    ddd     12345          13-Mar-10 17:52:56
    eee     54321     tn,ind      13-Mar-10 17:49:50
    fff     98765     Tamil Nadu, India      13-Mar-10 17:49:25
    fff     98765     Tamil Nadu, India      13-Mar-10 17:44:26
    ddd     12345          13-Mar-10 17:42:56
    >
    from this output i want only one latest record for each member(ddd,eee,fff). i.e
    >
    ddd     12345          13-Mar-10 19:43:03
    eee     54321     Tamil Nadu, India      13-Mar-10 19:39:48
    fff     98765          13-Mar-10 19:19:22
    >
    how to modify the query to achieve this...?

    Hi,
    This is not giving the result which i want...
    table is
    CREATE TABLE TRACKING_REPORT
      ID               NUMBER,
      MSISDN           NUMBER(12)                   NOT NULL,
      X                NUMBER(15,8)                 NOT NULL,
      Y                NUMBER(15,8)                 NOT NULL,
      TIME_STAMP       DATE,
      MSG_DATE_INFO    DATE                         DEFAULT sysdate,
      ADDRESS1_GOOGLE  VARCHAR2(400 BYTE),
      ADDRESS2_GOOGLE  VARCHAR2(400 BYTE),
      ADDRESS_MLINFO   VARCHAR2(400 BYTE),
      REQ_ID           VARCHAR2(30 BYTE)
    CREATE TABLE RESOURCE_INFO
      RESOURCE_ID    NUMBER,
      MSISDN         NUMBER,
      RESOURCE_NAME  VARCHAR2(25 BYTE),
      ADDRESS        VARCHAR2(100 BYTE),
      COM_ID         VARCHAR2(20 BYTE),
      ADMIN_ID       NUMBER,
      TIME_STAMP     DATE                           DEFAULT SYSDATE,
      GROUP_ID       NUMBER
    )

  • Select last occorence for each field of view where not there a timestamp

    I have a view TEST with the following field Field1 , Field2, Field3, ....
    Sample TEST
    Field1 .................Field2
    1 ...................... Rep7
    2 ...................... Rep5
    3 ...................... Rep4
    1 ...................... Rep1
    2 ...................... Rep3
    3 ...................... Rep6
    I want create a select that give the following result take a distinct field1 with the last occorence of field2
    For each field1 I want take the last field2
    sample of above the result is
    Field1..................Field2
    1 ...................... Rep1
    2 ...................... Rep3
    3 ...................... Rep6
    Edited by: user9011634 on 19-gen-2010 16.55

    Well, as i told you before, UNLESS the view has an order by statement in it you're out of luck.
    You will NOT get consistently ordered results UNLESS you have an order by statement.
    So you can try the code posted for you before, and it may work 90+ percent of the time, but i don't know many places where 90% consistency is good enough.
    *note, 90% is an arbitrary number, i can only tell you that it will not be 100% (and that's typically the required correctness rate any shop i've ever worked in).                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • I don't want 'Automatic audio fade' for each clip

    hmm, well, I like it but some member at my German board noticed, that any new clip has its (short) audio-fade-in.
    You can set to 'Manual/0 sec' ... but for each clip, not as a 'preset' for all.
    any expert any idea, which internal plist to edit to set that 'fix' to a 0-sec-fade?
    haven't found any ...

    AppleMan1958 wrote:
    but you could always COPY .. then PASTE ADJUSTMENTS/AUDIO ADJUSTMENTS.
    that PASTE ADJUSTMENTS is one of the most under-estimated features of iM09 .. !
    EXCELLENT advice, S.!

  • Selecting many records for each material...

    Hi all,
    I have an internal table that contains a list of materials. I want to loop over that list and retrieve a group of purchase reqs from EBAN for each material...appending each group of rews to my req table for each pass over the material list. Sample code;
    LOOP AT GT_MATERIALS INTO WA_MATERIALS.
    SELECT MENGE LFDAT
        INTO CORRESPONDING FIELDS OF TABLE GT_EBAN_FIELDS
        FROM EBAN
        WHERE MATNR EQ WA_MATERIALS-MATNR.      
        ???DO I DO AN APPEND OF SOME KIND HERE???
    ENDLOOP.
    Regards,
    Mat

    Hi Mathew,
    From performance point of view, the SELECT QUERY should not be under a loop. So you can do the following :
    <b>SORT GT_MATERIALS.
    IF not gt_materials is initial.</b>
    SELECT MENGE LFDAT
    INTO CORRESPONDING FIELDS OF TABLE GT_EBAN_FIELDS
    FROM EBAN
    <b>FOR ALL ENTRIES IN GT_MATERIALS</b>
    WHERE MATNR EQ GT_MATERIALS-MATNR.
    <b>ENDIF.</b>
    Also if the structure of table GT_EBAN_FIELDS has only two fields MENGE, LFDAT then please remove INTO CORRESPONDING FIELDS, instead use INTO TABLE GT_EBAN_FIELDS. This is becz INTO CORRESPONDING FIELDS would affect the performance.
    Best regards,
    Prashant

  • Is there any way to have unique setup for each Application in a single CSF

    Hello all,
    I am finding that i need more control with CSF files than just syncronising a generic setting that was made in one application...
    For example, for the same workflow, I need to have different policies in different applications such as:
         "Preserve CMYK" in Photoshop to correctly honor profiles in the images etc,
         "CMYK off" in indesign to properly preserve the Separation for my output style.
    Is there any way that i can make one CSF file that works differently on each application?
    Thanks!

    I'm not a ID power useful. I do own and use it ocassionally but I'm linking all the documents. That said, if I want say ProPhoto RGB to be the preferred RGB working space and I open a doc in sRGB, is that a problem in ID? Converting to ProPhoto in this case is senseless. Just leave the document in sRGB. Upon output, multiple images in differing color spaces should (should) be OK upon conversion to an output color space. Does ID have to have all images in the same color space to print?
    This is probably more evident when looking at a CMYK workflow. Although indesign will let you export PDF's with multiple different embedded profiles, I try to avoid this as it tends to result in issues like illustrator graphics that contain black objects which separate into 4 colour and cause potential registration issues on press etc...
    I am trying to remove all CMYK profiles and then asign an output intent by creating a PDFX file but so far the only way to consistently & reliabaly do it appears to be to set the CMYK policy to off in indesign...
    IMO a print ready PDF should only have one profile which describes the printing propcess that will be used to for the file.
    Andrew Rodney wrote:
    Matt Finlay wrote:
    For example having "ask when opening" for profile mismatch is the only way to control your document policies in indesign, which is essential if you are being supplied documents from outside designers. In photoshop this same function equates to an annoying dialog box that does not tell you anything you can't find out or fix without this option enabled.
    I don't see the differences in the two app's in terms of this setting.
    The function inside photoshop equates to "ask me what to do if i open an image whoes assigned profile is different to my workingspace profile". Inside indesign this option represents a conflict in a documents embedded policies with regard to "CMYK/RGB Policy, Document CMYK/RGB profile and also offers you the oportunity to manage the color of placed content".
    While profiles can be assigned elsewhere, and placed content can be managed elsewhere, from what i understand, the only other way to affect your document's CMYK/RGB Policy is through scripting... Changing this in your colour settings only changes this for newly created documents as these options are inherited by the document from the applications colour settings at the time of the document's creation...

  • Select different style for each border of a rectangle

    Hi,
    I just wanted to have a Rectangle (or some other component) which one must have different style for each of its borders.
    For example I want the top and the right border with a thickness of 2 and others with a thickness of 0 (so we can only see those two borders).
    How can I do it ?
    I tried with stroke (but stroke is for all borders, we can't specify which style for which border).
    Thanks,
    Jeff

    Well it is not clear what he is looking for just rect or a component with specific border. I havnt used flex 4 so i am not sure how to get it working for that
    , but i am sure it will work on the same lines.
    I have also given another option to create a it using lineTo() and moveTo().But this should only be used if this rect is not going to be used as a container.
    I think i should elaborate...
    Create a custom component using UIComponent. In updateDisplayList() after super.updateDisplayList() call a method say drawRect(). In this drawRect() use lineTo() and moveTo() to draw the rectangle. you would have to use the component's height and width to draw the rect.
    Let me know if you need more clearification...

  • Is it possible to turn off selected audio tracks for export?

    Hi,
    I have worked with fcp 5 before on a project with two languages. Beside the footage audio, each language had its own audio track which I could turn off for export. It was nice to have all languages in one project, because changes had effect for all languages at the same time.
    Is it possible to turn off audio tracks in fcpX for export?
    I know that fcpX hasn't tracks anymore, but is there a similar function to serve the same purpose?
    I am not a professional editor.

    I am blissfully unaware of how production companies work .
    The project I am working on is a pretty straight forward instruction video. I will be shooting the video, edit and then have the comments recorded by professionals. In DVDPro I will put them both together.
    The magnetic timeline is kind of irritating. I will have to work on the languages one after the other. So once I have a language done, I will probably create a compound clip to prevent the sliding around. That would also make it easier to enable or disable the clips.

  • Garageband can't find audio files for each instrument

    Every time I try and load a software instrument I get a message that says the wav or aiff file can't be found.  It asks me if I want to search again but it doesn't let me search manually.  Where are these files?

    aronfromchatsworth wrote:
    Every time I try and load a software instrument I get a message that says the wav or aiff file can't be found.  It asks me if I want to search again but it doesn't let me search manually.  Where are these files?
    Thats weird. I can understand getting that message if you are trying to load a 'blue' audio loop, but not a 'green' software instrument.
    The audio loops on my machine are in two places
    1. Machintosh HD>Library>Audio>Apple Loops>Apple>Apple Loops for GarageBand AND JamPack 4 Synphony Orchestra.
    2. Machintosh HD>Library>Application Support>GarageBand>AppleLoops>JamPack 2 & 3.
    If you have not loaded any JamPacks or 3rd party loops and are just using the standard loops that come with GB then option 1 will be where your want to have a look.

  • Rs to do, and I selected the font for each 4s clip - now I want to change the font - is there a way to change all fonts on clips in one go?

    Hi I am new to iMovie - and made a 35min film - quite pleased with it - I sub-titled it right through coz we work with deaf people - wanted my first movie to be accessible. Now I want to change the font on each clip - can I do this in one step - and change all the sub-titles to a different font - thanks a lot, Jane

    Maybe some one else can pipe up with a solution, but this would literally take 2 seconds to do for a new project.  And you can create a "template project" that includes this "text" clip.  Save this project and then to a get info and check "stationary pad."  When you double click on this file, fcp will open with a copy of this project and you just need to do a save as. 
    I've been working with computer editing systems for longer than i can remember and at a certain point you just have to adapt your workflow to the limitations of the software.  

Maybe you are looking for

  • "Adobe Premiere Elements 11 has stopped working"

    Hi, I have been having problems with getting Adobe Premiere Elements 11 to open. It was working fine for a year and then I haven't been able to get it to open. I have tried running the program as an administrator, uninstalling and reinstalling and de

  • Problem with Characteristic of type NUMC

    Hi, I have a characteristic field with data type NUMC and length 6. When I load data for that field as "1" it gets updated as 10000. What might be the reason for the same? How to solve it?

  • Why does my iPhone say that certain songs are not on my iPhone when they clearly are?

    Using the new "Purchased" button on the bottom of the iTunes app on my iPhone, when I tap "Not On This iPhone", it lists songs that are definitely on my iPhone. Is there a way to fix this? Furthermore, there are 47 pending downloads that I want to cl

  • Intercompany STO between 2 Full Warehouses with Handling Unit Activated.

    Hi, I want to perform Intercompany STO between plant A and B both have Full warehouse management activated with HU Mgmt. Will this process be exactly same as the generic process? - Create PO - Do VL10g - Go to VL02n and then create TOs and assign HUs

  • Biggest concern for me was fixed!

    POP email. Previous endless connecting issue. My temporary solution was to have Gmail grab my POP email at whatever interval it liked. This worked. All my POPs were not active during this temp solution. I sorted everything out when I got home to my c