Bonjour, j'ai de gros fichier vidéo dans un format exotique sous matlab avec un échantillonnage conséquent... J'aimerai en extraire des fichiers Jpeg, et il existe une fonction me le permettant.
Je pense par contre que ma syntaxe ne doit pas être exacte car matlab me renvoi toujours une erreur
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13 data = quickmovie_dstream(D, startend, varargin) % <D> datastream object with an 'Electrode Raw Data' stream % <startend> 2-element vector giving start and end times for the movie in msec % <data> the data actually used for the movie % % <varargin> several optional parameter/value pairs (with their defaults): % loop = 1 infinite looping through the movie % saveas = []; path and group name for jpeg-files, e.g. 'saveAs', 'c:\temp\test'. % If 'saveAs' is a number (any) a global matlab-movie variable named 'mframe' % will be created from the movie. % namesequence='sequential'; Indicates the numbering of the filenames given by 'saveAs'. 'sequential' % will have ascending numbers appended to the filename.
Quelqu'un peut-il me mettre sur la voie? Merci par avance!
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4 C:\0012.mcd = quickmovie_dstream(D, [1 5], saveas = [C:\0060], loop = 0) ??? C:\0012.mcd = quickmovie_dstream(D, [1 5], saveas = [C:\0060], loop = 0) | Error: Unexpected MATLAB operator.
Partager