0

起動時に短い 5 秒のビデオを再生するアプリケーションを開発しています。3gp、mpg、またはその他の最適な形式はどれですか? タイトル アクティビティを生成しました。タイトルの前にビデオを再生したかった。助けてください!!!以下は私のタイトルアクティビティのコードです。

public class Title extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.title);
        setTitle("M.I.S.T");
        this.setTitleColor(Color.BLUE); 
        View title = getWindow().findViewById(android.R.id.title);
        View titleBar = (View) title.getParent();
        titleBar.setBackgroundColor(Color.YELLOW);
        Thread timer = new Thread(){
            public void run(){

                try{
                    sleep(3000);
                }catch (InterruptedException e){
                    e.printStackTrace();
                }finally{
                    Intent open= new Intent("com.congestion6.asad.MENU");
                    startActivity(open);
                }
            }
        };
        timer.start();
    }

    protected void onPause() {
        // TODO Auto-generated method stub
        super.onPause();
        finish();
    }
}
4

1 に答える 1

0

mpegは、さまざまな形式/アルゴリズム/コーデックでビデオを圧縮できますが、サポートされているものとサポートされていないものがあります。3gp は 1 つにすぎず、サポートされています (ただし、形式は非常に貧弱です)。

さまざまなオプションがすべて表示されるビデオを自分でエンコードしてみてください。通常、H264のmp4はモバイルで問題なく動作します。

于 2012-10-27T04:54:31.677 に答える