Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
264ce6ee
Commit
264ce6ee
authored
23 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
A general animation script
parent
0c87ec7f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
demos/anim.script
+73
-0
73 additions, 0 deletions
demos/anim.script
with
73 additions
and
0 deletions
demos/anim.script
0 → 100644
+
73
−
0
View file @
264ce6ee
//
// This is a generic 320x240 mpg + animated gif creation script
//
// Requirements: mpeg_encode, whirlgif and a UNIX shell
//
// Usage: gmsh file(s) animate.script
//
// Output: view.mpg and view.gif
//
General.GraphicsWidth = 320 ;
General.GraphicsHeight = 240 ;
PostProcessing.Link = 1;
For i In {1:View[0].NbTimeStep}
View[0].TimeStep++;
Draw;
If (i < 10)
Print Sprintf("out-0%g.jpg", i);
Print Sprintf("out-0%g.gif", i);
EndIf
If (i >= 10)
Print Sprintf("out-%g.jpg", i);
Print Sprintf("out-%g.gif", i);
EndIf
EndFor
// create the parameter file for mpeg_encode
System 'echo "PATTERN I" > out.par' ;
System 'echo "BASE_FILE_FORMAT JPEG" >> out.par' ;
System 'echo "GOP_SIZE 30" >> out.par' ;
System 'echo "SLICES_PER_FRAME 1" >> out.par' ;
System 'echo "PIXEL HALF" >> out.par' ;
System 'echo "RANGE 10" >> out.par' ;
System 'echo "PSEARCH_ALG TWOLEVEL" >> out.par' ;
System 'echo "BSEARCH_ALG CROSS2" >> out.par' ;
System 'echo "IQSCALE 8" >> out.par' ;
System 'echo "PQSCALE 10" >> out.par' ;
System 'echo "BQSCALE 25" >> out.par' ;
System 'echo "REFERENCE_FRAME ORIGINAL" >> out.par' ;
System 'echo "OUTPUT out.mpg" >> out.par' ;
System 'echo "INPUT_CONVERT *" >> out.par' ;
System 'echo "INPUT_DIR ." >> out.par' ;
System 'echo "INPUT" >> out.par' ;
If (View[0].NbTimeStep < 10)
System Sprintf('echo "out-*.jpg [01-0%g]" >> out.par', View[0].NbTimeStep) ;
EndIf
If (View[0].NbTimeStep >= 10)
System Sprintf('echo "out-*.jpg [01-%g]" >> out.par', View[0].NbTimeStep) ;
EndIf
System 'echo "END_INPUT" >> out.par' ;
// Call mpeg_encode
System "mpeg_encode out.par" ;
// Call whirlgif
System "whirlgif -loop -o out.gif out-*.gif" ;
// Clean-up all temp files
System "rm -f out-*.gif" ;
System "rm -f out-*.jpg" ;
System "rm -f out.par" ;
// Rename the output files to the view name
System StrCat( StrCat("mv out.gif ", Sprintf(View[0].Name)), ".gif");
System StrCat( StrCat("mv out.mpg ", Sprintf(View[0].Name)), ".mpg");
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment