
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (41)
-
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)
Sur d’autres sites (7114)
-
movie2avi - how to fix the frame size ?
18 décembre 2019, par Ed MendesI have searched stackoverflow for a similar question and I found question "movie2avi-frame-size-error-and-keeping-frame-size-constant". Unfortunately the answer given there did not solve my problem (it has been suggested the use of xlim, ylim and zlim).
In what follows I send a lightly modified version of a well-known example given elsewhere.
%# figure
figure, set(gcf, 'Color','white')
Z = peaks; surf(Z); axis tight
set(gca, 'nextplot','replacechildren', 'Visible','off');
[az,el]=view;
xl=xlim;
yl=ylim;
zl=zlim;
%# preallocate
nFrames = 20;
mov(1:nFrames) = struct('cdata',[], 'colormap',[]);
%# create movie
for k=1:nFrames
view([(az-k*10) el]);
xlim(xl);ylim(yl);zlim(zl);
drawnow;pause(0.1);
mov(k) = getframe(gca);
end
close(gcf)
%# save as AVI file, and open it using system video player
movie2avi(mov, 'myPeaks1.avi', 'compression','None', 'fps',10);The idea is to rotate the figure and create a movie. Everything works fine except for the last command, that is, movie2avi. The error msg is
Error using avifile/addframe>ValidateFrame (line 290)
Frame must be 435 by 344.
Error in avifile/addframe (line 158)
ValidateFrame(aviobj,width, height,dims);
Error in movie2avi (line 67)
avimov = addframe(avimov,mov);
Error in more_video_test (line 24)
movie2avi(mov, 'myPeaks1.avi', 'compression','None', 'fps',10);I have looked at approaches-to-create-a-video-in-matlab here in stackoverflow and found that :
a) Solution ffmpeg works but I would like to avoid it.
b) All other solutions failed even QTWriter. How can I fix the frame size so that all these other solutions work ?Many thanks.
Ed
-
movie2avi - how to fix the frame size ?
2 octobre 2013, par Ed MendesI have searched stackoverflow for a similar question and I found question "movie2avi-frame-size-error-and-keeping-frame-size-constant". Unfortunately the answer given there did not solve my problem (it has been suggested the use of xlim, ylim and zlim).
In what follows I send a lightly modified version of a well-known example given elsewhere.
%# figure
figure, set(gcf, 'Color','white')
Z = peaks; surf(Z); axis tight
set(gca, 'nextplot','replacechildren', 'Visible','off');
[az,el]=view;
xl=xlim;
yl=ylim;
zl=zlim;
%# preallocate
nFrames = 20;
mov(1:nFrames) = struct('cdata',[], 'colormap',[]);
%# create movie
for k=1:nFrames
view([(az-k*10) el]);
xlim(xl);ylim(yl);zlim(zl);
drawnow;pause(0.1);
mov(k) = getframe(gca);
end
close(gcf)
%# save as AVI file, and open it using system video player
movie2avi(mov, 'myPeaks1.avi', 'compression','None', 'fps',10);The idea is to rotate the figure and create a movie. Everything works fine except for the last command, that is, movie2avi. The error msg is
Error using avifile/addframe>ValidateFrame (line 290)
Frame must be 435 by 344.
Error in avifile/addframe (line 158)
ValidateFrame(aviobj,width, height,dims);
Error in movie2avi (line 67)
avimov = addframe(avimov,mov);
Error in more_video_test (line 24)
movie2avi(mov, 'myPeaks1.avi', 'compression','None', 'fps',10);I have looked at approaches-to-create-a-video-in-matlab here in stackoverflow and found that :
a) Solution ffmpeg works but I would like to avoid it.
b) All other solutions failed even QTWriter. How can I fix the frame size so that all these other solutions work ?Many thanks.
Ed
-
ffmpeg convert swf to mp4 error [migrated]
30 août 2014, par wy1100my command :
ffmpeg -i /Users/xxx/Downloads/demo.swf -y /Users/xxx/Downloads/demo.mp4
demo.swf
has many frames and 9 photos, butffmpeg
convert result is only 9 frames :"frame=9 fps=0.0 q=-1.0 Lsize=180kB time=00:00:00.29 bitrate=5057.4kbits/s"
and
ffmpeg
input stream isStream #0:0: Video: mjpeg, yuvj444p(pc, bt470bg), 420x420, 24 fps, 24 tbr, 24 tbn
it is
mjpeg
format.but i used another
swf
, the input is"Stream #0:0: Video : flv"
,the another one works. This
swf
convert result is"frame = 200 time=20"
.Is it the format problem ?