フォルダに追加した .mp4 ビデオ ファイルを再生しようとしていraw
ます。その結果、常にerror (1, -2147483648)
LogCat を取得します。
調査の結果、これはサポートされていないコーデック/フォーマットが原因であることがわかりました。しかし、過去 2 日間、http://developer.android.com/guide/appendix/media-formats.html に従ってAdobe Premiere でビデオをレンダリングしましたか? 結果は常に同じです。エラーと「このビデオを再生できません」というメッセージが表示されます。アプリ起動時。
私のJAVAコードはこれです:
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
VideoView vv = (VideoView) findViewById(R.id.videoView);
String fileName = "//BioLab/res/raw/sequence";
vv.setVideoURI(Uri.parse(fileName));
vv.start();
}
}
そして、主な活動は次のとおりです。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<VideoView android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/videoView"/>
</RelativeLayout>
会社のロゴのビデオなど、フルスクリーンのビデオを再生するゲームを見たことがあります。どうやってやっているの?普遍的な方法があるはずです。
注: Java コードでパス "//BioLab/res/raw/sequence"
を使用 し"/BioLab/res/raw/sequence.mp4"
ます“android.resource://” + getPackageName() +”/”+R.raw.video
。
ログキャット:error opening trace file: No such file or directory (2)