How can I access Samsung Voice Recorder m4a bookmarks after conversion to Windows mpeg4?
I recorded several files with Samsung Voice Recorder and inserted several bookmarks per file. On my phone, they are m4a files. When copied onto my computer, they appear as mpeg4 files.
I need to add these to Powerpoint (one file per slide), and use the bookmarks to trigger animations (ideally with vba), however, the bookmarks don't show up.
Can anyone please help or point me in the right direction? Thanks in advance.
Here is a link to one of the files. This file has 6 bookmarks with the following timing: 00:00, 00:03, 00:04, 00:05, 00:12, 00:24.
https://1drv.ms/u/s!AkCe6_YwGEfWgupe2wsCcerSf4nFUw
I have added the final code. The audio files follow a script that have minor variations for specific clients, so the clips are all very close to the same. I added the audio file to each slide then copied the bookmarks from the original audio and applied them to the new file. Thanks!!
'Purpose: Copy media bookmarks and animation settings from a media shape on the same slide to the selected media shape.
'Sources:
' https://stackoverflow.com/questions/54011849/how-can-i-access-samsung-voice-recorder-m4a-bookmarks-after-conversion-to-window
' http://skp.mvps.org/2010/ppt002.htm
Private Sub CopyMediaSettingsToNewItem()
Dim sld As Slide
Dim newShp As Shape
Dim shp As Shape
Dim mf As MediaFormat
Dim z As Long
Dim y As Long
Dim oMBK As MediaBookmark
Dim myMBK As String
Dim myPos As Long
Set sld = ActivePresentation.Slides(ActiveWindow.Selection.SlideRange.SlideIndex)
Set shp = sld.Shapes("Slide 13")
Set mf = shp.MediaFormat
Set newShp = sld.Shapes("Slides(13)")
With newShp
.Top = shp.Top
.Left = shp.Left
.Width = shp.Width
.Height = shp.Height
End With
'Apply the original shape's media format settings to the new shape. The 'noted settings are read-only.
With newShp.MediaFormat
'.AudioCompressionType = shp.MediaFormat.AudioCompressionType
'.AudioSamplingRate = shp.MediaFormat.AudioSamplingRate
'.EndPoint = shp.MediaFormat.EndPoint
.FadeInDuration = shp.MediaFormat.FadeInDuration
.FadeOutDuration = shp.MediaFormat.FadeOutDuration
'.IsEmbedded = shp.MediaFormat.IsEmbedded
'.IsLinked = shp.MediaFormat.IsLinked
'.Length = shp.MediaFormat.Length
.Muted = shp.MediaFormat.Muted
'.Parent = shp.MediaFormat.Parent
'.ResamplingStatus = shp.MediaFormat.ResamplingStatus
'.SampleHeight = shp.MediaFormat.SampleHeight
'.SampleWidth = shp.MediaFormat.SampleWidth
.StartPoint = shp.MediaFormat.StartPoint
.Volume = shp.MediaFormat.Volume
End With
For y = 1 To shp.MediaFormat.MediaBookmarks.Count
Set oMBK = shp.MediaFormat.MediaBookmarks(y)
myMBK = oMBK.Name
Debug.Print "Length: " & shp.MediaFormat.Length
Debug.Print "EndPoint: " & shp.MediaFormat.EndPoint
Debug.Print "Position: " & oMBK.Position
Debug.Print "Name: " & oMBK.Name
'If the last bookmark position of the original shape is past the length of the new media file...
If oMBK.Position > newShp.MediaFormat.Length Then
myPos = newShp.MediaFormat.Length
Else: myPos = shp.MediaFormat.MediaBookmarks(y).Position
End If
With ActiveWindow.Selection.ShapeRange(1)
With .MediaFormat.MediaBookmarks
.Add myPos, myMBK
End With
End With
Next
If shp.MediaType = ppMediaTypeMovie Then
'.VideoCompressionType = shp.MediaFormat.VideoCompressionType
'.VideoFrameRate = shp.MediaFormat.VideoFrameRate
End If
shp.PickupAnimation
newShp.ApplyAnimation
'Dim eff As Effect
'Set eff = sld.TimeLine.MainSequence.AddEffect(newShp, msoAnimEffectMediaPlay, trigger:=msoAnimTriggerAfterPrevious)
'With newShp.AnimationSettings.PlaySettings
'.LoopUntilStopped = msoCTrue
'.PauseAnimation = msoFalse
'.PlayOnEntry = msoCTrue
'.RewindMovie = msoCTrue
'.StopAfterSlides = 999
'.HideWhileNotPlaying = msoTrue
'End With
'Release from memory
Set sld = Nothing
Set newShp = Nothing
Set shp = Nothing
z = 0
y = 0
Set oMBK = Nothing
Set mf = Nothing
myMBK = vbNullString
myPos = 0
End Sub
add a comment |
I recorded several files with Samsung Voice Recorder and inserted several bookmarks per file. On my phone, they are m4a files. When copied onto my computer, they appear as mpeg4 files.
I need to add these to Powerpoint (one file per slide), and use the bookmarks to trigger animations (ideally with vba), however, the bookmarks don't show up.
Can anyone please help or point me in the right direction? Thanks in advance.
Here is a link to one of the files. This file has 6 bookmarks with the following timing: 00:00, 00:03, 00:04, 00:05, 00:12, 00:24.
https://1drv.ms/u/s!AkCe6_YwGEfWgupe2wsCcerSf4nFUw
I have added the final code. The audio files follow a script that have minor variations for specific clients, so the clips are all very close to the same. I added the audio file to each slide then copied the bookmarks from the original audio and applied them to the new file. Thanks!!
'Purpose: Copy media bookmarks and animation settings from a media shape on the same slide to the selected media shape.
'Sources:
' https://stackoverflow.com/questions/54011849/how-can-i-access-samsung-voice-recorder-m4a-bookmarks-after-conversion-to-window
' http://skp.mvps.org/2010/ppt002.htm
Private Sub CopyMediaSettingsToNewItem()
Dim sld As Slide
Dim newShp As Shape
Dim shp As Shape
Dim mf As MediaFormat
Dim z As Long
Dim y As Long
Dim oMBK As MediaBookmark
Dim myMBK As String
Dim myPos As Long
Set sld = ActivePresentation.Slides(ActiveWindow.Selection.SlideRange.SlideIndex)
Set shp = sld.Shapes("Slide 13")
Set mf = shp.MediaFormat
Set newShp = sld.Shapes("Slides(13)")
With newShp
.Top = shp.Top
.Left = shp.Left
.Width = shp.Width
.Height = shp.Height
End With
'Apply the original shape's media format settings to the new shape. The 'noted settings are read-only.
With newShp.MediaFormat
'.AudioCompressionType = shp.MediaFormat.AudioCompressionType
'.AudioSamplingRate = shp.MediaFormat.AudioSamplingRate
'.EndPoint = shp.MediaFormat.EndPoint
.FadeInDuration = shp.MediaFormat.FadeInDuration
.FadeOutDuration = shp.MediaFormat.FadeOutDuration
'.IsEmbedded = shp.MediaFormat.IsEmbedded
'.IsLinked = shp.MediaFormat.IsLinked
'.Length = shp.MediaFormat.Length
.Muted = shp.MediaFormat.Muted
'.Parent = shp.MediaFormat.Parent
'.ResamplingStatus = shp.MediaFormat.ResamplingStatus
'.SampleHeight = shp.MediaFormat.SampleHeight
'.SampleWidth = shp.MediaFormat.SampleWidth
.StartPoint = shp.MediaFormat.StartPoint
.Volume = shp.MediaFormat.Volume
End With
For y = 1 To shp.MediaFormat.MediaBookmarks.Count
Set oMBK = shp.MediaFormat.MediaBookmarks(y)
myMBK = oMBK.Name
Debug.Print "Length: " & shp.MediaFormat.Length
Debug.Print "EndPoint: " & shp.MediaFormat.EndPoint
Debug.Print "Position: " & oMBK.Position
Debug.Print "Name: " & oMBK.Name
'If the last bookmark position of the original shape is past the length of the new media file...
If oMBK.Position > newShp.MediaFormat.Length Then
myPos = newShp.MediaFormat.Length
Else: myPos = shp.MediaFormat.MediaBookmarks(y).Position
End If
With ActiveWindow.Selection.ShapeRange(1)
With .MediaFormat.MediaBookmarks
.Add myPos, myMBK
End With
End With
Next
If shp.MediaType = ppMediaTypeMovie Then
'.VideoCompressionType = shp.MediaFormat.VideoCompressionType
'.VideoFrameRate = shp.MediaFormat.VideoFrameRate
End If
shp.PickupAnimation
newShp.ApplyAnimation
'Dim eff As Effect
'Set eff = sld.TimeLine.MainSequence.AddEffect(newShp, msoAnimEffectMediaPlay, trigger:=msoAnimTriggerAfterPrevious)
'With newShp.AnimationSettings.PlaySettings
'.LoopUntilStopped = msoCTrue
'.PauseAnimation = msoFalse
'.PlayOnEntry = msoCTrue
'.RewindMovie = msoCTrue
'.StopAfterSlides = 999
'.HideWhileNotPlaying = msoTrue
'End With
'Release from memory
Set sld = Nothing
Set newShp = Nothing
Set shp = Nothing
z = 0
y = 0
Set oMBK = Nothing
Set mf = Nothing
myMBK = vbNullString
myPos = 0
End Sub
can you share a sample file with book mark.
– Markus Schumann
Jan 3 at 14:02
Markus Schumman I've added a sample file.
– Jenn
Jan 3 at 16:48
@Jenn You can add bookmarks to a video using VBA (I can probably dig up some code for this if you don't know how) but I don't know any way to retrieve existing bookmarks from a video file.
– Steve Rindsberg
Jan 3 at 21:43
@Steve Rindsberg Being able to add bookmarks using VBA would be fantastic. I don't know how. If you could share, that would be wonderful. These are audio files though. Would the code be the same for audio and video? Both would be helpful. Thank you!
– Jenn
Jan 6 at 14:06
@jenn see my answer below
– Steve Rindsberg
Jan 7 at 16:19
add a comment |
I recorded several files with Samsung Voice Recorder and inserted several bookmarks per file. On my phone, they are m4a files. When copied onto my computer, they appear as mpeg4 files.
I need to add these to Powerpoint (one file per slide), and use the bookmarks to trigger animations (ideally with vba), however, the bookmarks don't show up.
Can anyone please help or point me in the right direction? Thanks in advance.
Here is a link to one of the files. This file has 6 bookmarks with the following timing: 00:00, 00:03, 00:04, 00:05, 00:12, 00:24.
https://1drv.ms/u/s!AkCe6_YwGEfWgupe2wsCcerSf4nFUw
I have added the final code. The audio files follow a script that have minor variations for specific clients, so the clips are all very close to the same. I added the audio file to each slide then copied the bookmarks from the original audio and applied them to the new file. Thanks!!
'Purpose: Copy media bookmarks and animation settings from a media shape on the same slide to the selected media shape.
'Sources:
' https://stackoverflow.com/questions/54011849/how-can-i-access-samsung-voice-recorder-m4a-bookmarks-after-conversion-to-window
' http://skp.mvps.org/2010/ppt002.htm
Private Sub CopyMediaSettingsToNewItem()
Dim sld As Slide
Dim newShp As Shape
Dim shp As Shape
Dim mf As MediaFormat
Dim z As Long
Dim y As Long
Dim oMBK As MediaBookmark
Dim myMBK As String
Dim myPos As Long
Set sld = ActivePresentation.Slides(ActiveWindow.Selection.SlideRange.SlideIndex)
Set shp = sld.Shapes("Slide 13")
Set mf = shp.MediaFormat
Set newShp = sld.Shapes("Slides(13)")
With newShp
.Top = shp.Top
.Left = shp.Left
.Width = shp.Width
.Height = shp.Height
End With
'Apply the original shape's media format settings to the new shape. The 'noted settings are read-only.
With newShp.MediaFormat
'.AudioCompressionType = shp.MediaFormat.AudioCompressionType
'.AudioSamplingRate = shp.MediaFormat.AudioSamplingRate
'.EndPoint = shp.MediaFormat.EndPoint
.FadeInDuration = shp.MediaFormat.FadeInDuration
.FadeOutDuration = shp.MediaFormat.FadeOutDuration
'.IsEmbedded = shp.MediaFormat.IsEmbedded
'.IsLinked = shp.MediaFormat.IsLinked
'.Length = shp.MediaFormat.Length
.Muted = shp.MediaFormat.Muted
'.Parent = shp.MediaFormat.Parent
'.ResamplingStatus = shp.MediaFormat.ResamplingStatus
'.SampleHeight = shp.MediaFormat.SampleHeight
'.SampleWidth = shp.MediaFormat.SampleWidth
.StartPoint = shp.MediaFormat.StartPoint
.Volume = shp.MediaFormat.Volume
End With
For y = 1 To shp.MediaFormat.MediaBookmarks.Count
Set oMBK = shp.MediaFormat.MediaBookmarks(y)
myMBK = oMBK.Name
Debug.Print "Length: " & shp.MediaFormat.Length
Debug.Print "EndPoint: " & shp.MediaFormat.EndPoint
Debug.Print "Position: " & oMBK.Position
Debug.Print "Name: " & oMBK.Name
'If the last bookmark position of the original shape is past the length of the new media file...
If oMBK.Position > newShp.MediaFormat.Length Then
myPos = newShp.MediaFormat.Length
Else: myPos = shp.MediaFormat.MediaBookmarks(y).Position
End If
With ActiveWindow.Selection.ShapeRange(1)
With .MediaFormat.MediaBookmarks
.Add myPos, myMBK
End With
End With
Next
If shp.MediaType = ppMediaTypeMovie Then
'.VideoCompressionType = shp.MediaFormat.VideoCompressionType
'.VideoFrameRate = shp.MediaFormat.VideoFrameRate
End If
shp.PickupAnimation
newShp.ApplyAnimation
'Dim eff As Effect
'Set eff = sld.TimeLine.MainSequence.AddEffect(newShp, msoAnimEffectMediaPlay, trigger:=msoAnimTriggerAfterPrevious)
'With newShp.AnimationSettings.PlaySettings
'.LoopUntilStopped = msoCTrue
'.PauseAnimation = msoFalse
'.PlayOnEntry = msoCTrue
'.RewindMovie = msoCTrue
'.StopAfterSlides = 999
'.HideWhileNotPlaying = msoTrue
'End With
'Release from memory
Set sld = Nothing
Set newShp = Nothing
Set shp = Nothing
z = 0
y = 0
Set oMBK = Nothing
Set mf = Nothing
myMBK = vbNullString
myPos = 0
End Sub
I recorded several files with Samsung Voice Recorder and inserted several bookmarks per file. On my phone, they are m4a files. When copied onto my computer, they appear as mpeg4 files.
I need to add these to Powerpoint (one file per slide), and use the bookmarks to trigger animations (ideally with vba), however, the bookmarks don't show up.
Can anyone please help or point me in the right direction? Thanks in advance.
Here is a link to one of the files. This file has 6 bookmarks with the following timing: 00:00, 00:03, 00:04, 00:05, 00:12, 00:24.
https://1drv.ms/u/s!AkCe6_YwGEfWgupe2wsCcerSf4nFUw
I have added the final code. The audio files follow a script that have minor variations for specific clients, so the clips are all very close to the same. I added the audio file to each slide then copied the bookmarks from the original audio and applied them to the new file. Thanks!!
'Purpose: Copy media bookmarks and animation settings from a media shape on the same slide to the selected media shape.
'Sources:
' https://stackoverflow.com/questions/54011849/how-can-i-access-samsung-voice-recorder-m4a-bookmarks-after-conversion-to-window
' http://skp.mvps.org/2010/ppt002.htm
Private Sub CopyMediaSettingsToNewItem()
Dim sld As Slide
Dim newShp As Shape
Dim shp As Shape
Dim mf As MediaFormat
Dim z As Long
Dim y As Long
Dim oMBK As MediaBookmark
Dim myMBK As String
Dim myPos As Long
Set sld = ActivePresentation.Slides(ActiveWindow.Selection.SlideRange.SlideIndex)
Set shp = sld.Shapes("Slide 13")
Set mf = shp.MediaFormat
Set newShp = sld.Shapes("Slides(13)")
With newShp
.Top = shp.Top
.Left = shp.Left
.Width = shp.Width
.Height = shp.Height
End With
'Apply the original shape's media format settings to the new shape. The 'noted settings are read-only.
With newShp.MediaFormat
'.AudioCompressionType = shp.MediaFormat.AudioCompressionType
'.AudioSamplingRate = shp.MediaFormat.AudioSamplingRate
'.EndPoint = shp.MediaFormat.EndPoint
.FadeInDuration = shp.MediaFormat.FadeInDuration
.FadeOutDuration = shp.MediaFormat.FadeOutDuration
'.IsEmbedded = shp.MediaFormat.IsEmbedded
'.IsLinked = shp.MediaFormat.IsLinked
'.Length = shp.MediaFormat.Length
.Muted = shp.MediaFormat.Muted
'.Parent = shp.MediaFormat.Parent
'.ResamplingStatus = shp.MediaFormat.ResamplingStatus
'.SampleHeight = shp.MediaFormat.SampleHeight
'.SampleWidth = shp.MediaFormat.SampleWidth
.StartPoint = shp.MediaFormat.StartPoint
.Volume = shp.MediaFormat.Volume
End With
For y = 1 To shp.MediaFormat.MediaBookmarks.Count
Set oMBK = shp.MediaFormat.MediaBookmarks(y)
myMBK = oMBK.Name
Debug.Print "Length: " & shp.MediaFormat.Length
Debug.Print "EndPoint: " & shp.MediaFormat.EndPoint
Debug.Print "Position: " & oMBK.Position
Debug.Print "Name: " & oMBK.Name
'If the last bookmark position of the original shape is past the length of the new media file...
If oMBK.Position > newShp.MediaFormat.Length Then
myPos = newShp.MediaFormat.Length
Else: myPos = shp.MediaFormat.MediaBookmarks(y).Position
End If
With ActiveWindow.Selection.ShapeRange(1)
With .MediaFormat.MediaBookmarks
.Add myPos, myMBK
End With
End With
Next
If shp.MediaType = ppMediaTypeMovie Then
'.VideoCompressionType = shp.MediaFormat.VideoCompressionType
'.VideoFrameRate = shp.MediaFormat.VideoFrameRate
End If
shp.PickupAnimation
newShp.ApplyAnimation
'Dim eff As Effect
'Set eff = sld.TimeLine.MainSequence.AddEffect(newShp, msoAnimEffectMediaPlay, trigger:=msoAnimTriggerAfterPrevious)
'With newShp.AnimationSettings.PlaySettings
'.LoopUntilStopped = msoCTrue
'.PauseAnimation = msoFalse
'.PlayOnEntry = msoCTrue
'.RewindMovie = msoCTrue
'.StopAfterSlides = 999
'.HideWhileNotPlaying = msoTrue
'End With
'Release from memory
Set sld = Nothing
Set newShp = Nothing
Set shp = Nothing
z = 0
y = 0
Set oMBK = Nothing
Set mf = Nothing
myMBK = vbNullString
myPos = 0
End Sub
edited Mar 13 at 15:16
Jenn
asked Jan 2 at 19:06
JennJenn
115
115
can you share a sample file with book mark.
– Markus Schumann
Jan 3 at 14:02
Markus Schumman I've added a sample file.
– Jenn
Jan 3 at 16:48
@Jenn You can add bookmarks to a video using VBA (I can probably dig up some code for this if you don't know how) but I don't know any way to retrieve existing bookmarks from a video file.
– Steve Rindsberg
Jan 3 at 21:43
@Steve Rindsberg Being able to add bookmarks using VBA would be fantastic. I don't know how. If you could share, that would be wonderful. These are audio files though. Would the code be the same for audio and video? Both would be helpful. Thank you!
– Jenn
Jan 6 at 14:06
@jenn see my answer below
– Steve Rindsberg
Jan 7 at 16:19
add a comment |
can you share a sample file with book mark.
– Markus Schumann
Jan 3 at 14:02
Markus Schumman I've added a sample file.
– Jenn
Jan 3 at 16:48
@Jenn You can add bookmarks to a video using VBA (I can probably dig up some code for this if you don't know how) but I don't know any way to retrieve existing bookmarks from a video file.
– Steve Rindsberg
Jan 3 at 21:43
@Steve Rindsberg Being able to add bookmarks using VBA would be fantastic. I don't know how. If you could share, that would be wonderful. These are audio files though. Would the code be the same for audio and video? Both would be helpful. Thank you!
– Jenn
Jan 6 at 14:06
@jenn see my answer below
– Steve Rindsberg
Jan 7 at 16:19
can you share a sample file with book mark.
– Markus Schumann
Jan 3 at 14:02
can you share a sample file with book mark.
– Markus Schumann
Jan 3 at 14:02
Markus Schumman I've added a sample file.
– Jenn
Jan 3 at 16:48
Markus Schumman I've added a sample file.
– Jenn
Jan 3 at 16:48
@Jenn You can add bookmarks to a video using VBA (I can probably dig up some code for this if you don't know how) but I don't know any way to retrieve existing bookmarks from a video file.
– Steve Rindsberg
Jan 3 at 21:43
@Jenn You can add bookmarks to a video using VBA (I can probably dig up some code for this if you don't know how) but I don't know any way to retrieve existing bookmarks from a video file.
– Steve Rindsberg
Jan 3 at 21:43
@Steve Rindsberg Being able to add bookmarks using VBA would be fantastic. I don't know how. If you could share, that would be wonderful. These are audio files though. Would the code be the same for audio and video? Both would be helpful. Thank you!
– Jenn
Jan 6 at 14:06
@Steve Rindsberg Being able to add bookmarks using VBA would be fantastic. I don't know how. If you could share, that would be wonderful. These are audio files though. Would the code be the same for audio and video? Both would be helpful. Thank you!
– Jenn
Jan 6 at 14:06
@jenn see my answer below
– Steve Rindsberg
Jan 7 at 16:19
@jenn see my answer below
– Steve Rindsberg
Jan 7 at 16:19
add a comment |
1 Answer
1
active
oldest
votes
You can add bookmarks to video or audio using VBA.
For example, assuming you have your audio or video selected:
With ActiveWindow.Selection.ShapeRange(1)
With .MediaFormat.MediaBookmarks
' Add a bookmark at the 5 second mark
.Add 5000, "My bookmark name"
End With ' MediaBookmarks
End With ' Selected Shape
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54011849%2fhow-can-i-access-samsung-voice-recorder-m4a-bookmarks-after-conversion-to-window%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can add bookmarks to video or audio using VBA.
For example, assuming you have your audio or video selected:
With ActiveWindow.Selection.ShapeRange(1)
With .MediaFormat.MediaBookmarks
' Add a bookmark at the 5 second mark
.Add 5000, "My bookmark name"
End With ' MediaBookmarks
End With ' Selected Shape
add a comment |
You can add bookmarks to video or audio using VBA.
For example, assuming you have your audio or video selected:
With ActiveWindow.Selection.ShapeRange(1)
With .MediaFormat.MediaBookmarks
' Add a bookmark at the 5 second mark
.Add 5000, "My bookmark name"
End With ' MediaBookmarks
End With ' Selected Shape
add a comment |
You can add bookmarks to video or audio using VBA.
For example, assuming you have your audio or video selected:
With ActiveWindow.Selection.ShapeRange(1)
With .MediaFormat.MediaBookmarks
' Add a bookmark at the 5 second mark
.Add 5000, "My bookmark name"
End With ' MediaBookmarks
End With ' Selected Shape
You can add bookmarks to video or audio using VBA.
For example, assuming you have your audio or video selected:
With ActiveWindow.Selection.ShapeRange(1)
With .MediaFormat.MediaBookmarks
' Add a bookmark at the 5 second mark
.Add 5000, "My bookmark name"
End With ' MediaBookmarks
End With ' Selected Shape
answered Jan 7 at 16:23
Steve RindsbergSteve Rindsberg
10.4k11526
10.4k11526
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54011849%2fhow-can-i-access-samsung-voice-recorder-m4a-bookmarks-after-conversion-to-window%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
can you share a sample file with book mark.
– Markus Schumann
Jan 3 at 14:02
Markus Schumman I've added a sample file.
– Jenn
Jan 3 at 16:48
@Jenn You can add bookmarks to a video using VBA (I can probably dig up some code for this if you don't know how) but I don't know any way to retrieve existing bookmarks from a video file.
– Steve Rindsberg
Jan 3 at 21:43
@Steve Rindsberg Being able to add bookmarks using VBA would be fantastic. I don't know how. If you could share, that would be wonderful. These are audio files though. Would the code be the same for audio and video? Both would be helpful. Thank you!
– Jenn
Jan 6 at 14:06
@jenn see my answer below
– Steve Rindsberg
Jan 7 at 16:19