Ignore:
Timestamp:
2009-03-05T14:27:58+01:00 (15 years ago)
Author:
david
Message:

first cut of creation of audio markers from timestamps on a set of audio files with clock synced to GPS.

Location:
trunk/src/org/openstreetmap/josm/gui/layer/markerlayer
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/layer/markerlayer/AudioMarker.java

    r1169 r1462  
    2020    private static AudioMarker recentlyPlayedMarker = null;
    2121    public  double syncOffset;
    22 
     22    public boolean timeFromAudio = false; // as opposed to from the GPX track
     23   
    2324    /**
    2425     * Verifies the parameter whether a new AudioMarker can be created and return
     
    3738        this.audioUrl = audioUrl;
    3839        this.syncOffset = 0.0;
     40        this.timeFromAudio = false;
    3941    }
    4042
  • trunk/src/org/openstreetmap/josm/gui/layer/markerlayer/PlayHeadMarker.java

    r1415 r1462  
    164164        if (ca == null) {
    165165            /* Not close enough to track, or no audio marker found for some other reason */
    166             JOptionPane.showMessageDialog(Main.parent, tr("You need to drag the play head near to the GPX track whose associated sound track you were playing."));
     166            JOptionPane.showMessageDialog(Main.parent, tr("You need to drag the play head near to the GPX track whose associated sound track you were playing (after the first marker)."));
    167167            endDrag(true);
    168168        } else {
Note: See TracChangeset for help on using the changeset viewer.