German Probleme mit VideoView

pjo12345

Active Member
Licensed User
Longtime User
Hallo,

ich habe folgenden Code:
B4X:
'Activity module
Sub Process_Globals
   'These global variables will be declared once when the application starts.
   'These variables can be accessed from all modules.

End Sub

Sub Globals
    Dim vv As VideoView
End Sub
Sub Activity_Create(FirstTime As Boolean)
    vv.Initialize("vv")
    Activity.AddView(vv, 10dip, 10dip, 250dip, 250dip)
    File.Copy(File.DirAssets, "sample_mpeg4.mp4", File.DirInternal, "sample_mpeg4.mp4")
    vv.LoadVideo(File.DirInternal, "sample_mpeg4.mp4")
    vv.Play
End Sub
Sub vv_Complete
    Log("Playing completed")
End Sub

Das Video "sample_mpeg4.mp4" habe ich von hier: QuickTime: Sample files

Beim Abspielen bekomme ich immer die Meldung: Dieses Video kann nicht angespielt werden. Was mache ich falsch?
Das selbe Problem bei einem 3gp-Video.

mfg pjo12345
 

pjo12345

Active Member
Licensed User
Longtime User
Funktioniert. Danke.
 
Top