ビデオファイルの更新日時を読み取る方法
15 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
ビデオファイル(MP4形式など)の更新日時(または撮影日時)を読み取る方法があれば教えていただけないでしょうか?
0 Commenti
Risposta accettata
Takuji Fukumoto
il 5 Giu 2017
動画に限らず一般的なファイルであれば下記で取得できます。お試しください。
MyFileInfo = dir('1.mp4');
MyFileInfo.date
3 Commenti
Takuji Fukumoto
il 6 Giu 2017
表示自体は下記でミリ秒までの表示ができます。
X=MyFileInfo.date
formatOut = 'HH:MM:SS:FFF';
datestr(X,formatOut)
手元のファイルでは下記のどちらを使ってもミリ秒の数値は000でしたので、戻り値に入っていないのかもしれません。
MyFileInfo.date
MyFileInfo.datenum
Più risposte (0)
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!