just a photo of me at work with some of my anti-stress

mplayer file.ext -ao null -vo yuv4mpeg -o file.yuvand to pack a yuv video file into an avi container use:
mencoder file.yuv -ovc copy -o file.yuv.avito keep the sound in the uncompressed avi you can do:
mplayer file.ext -ao pcm -vo yuv4mpeg
mencoder stream.yuv -audiofile audiodump.wav -ovc copy -o file.yuvpcm.avi
mencoder file.ext -ovc raw -nosound -of avi -o file.raw.avior
mencoder file.ext -ovc raw -oac pcm -of avi -o file.raw.avi
-a Generate extra code to write profile information for
basic blocks, which will record the number of times
each basic block is executed, the basic block start
address, and the function name containing the basic
block. If -g is used, the line number and filename of
the start of the basic block will also be recorded.
If not overridden by the machine description, the
default action is to append to the text file bb.out.
This data could be analyzed by a program like "tcov".
Note, however, that the format of the data is not what
"tcov" expects. Eventually GNU "gprof" should be
extended to process this data.
-fprofile-use
or -fbranch-probabilities
) and can be used to drive higher level optimizations, such as inlining. The -ftree-based-profiling
command line option was removed and -fprofile-use
now implies disabling old RTL level loop optimizer (-fno-loop-optimize
). Speculative prefetching optimization (originally enabled by -fspeculative-prefetching
) was removed.
You can give more than one profile data file by entering all their names after the executable file name; then the statistics in all the data files are summed together.
No, we'll just need to find a representive set of videos.for f in *.mov
do
mplayer $f
mv gmon.out {$f%.mov}.gmon
done
gprof ~/local/bin/mplayer *.gmon > sumup.prof
sed s/OPTFLAGS.*/"& -pg -fno-inline"/ config.mak > tmpwe run mplayer on the "1408" movie trailer and then analyze the profiling.
mv tmp config.mak
make clean && make && make install
% +MP-ADDITIONAL-HEADERthen use mpost + mptopdf or just mptopdf that whill call mpost (I had problem using just mptopdf)
verbatimtex
%&latex
\documentclass{article}
\usepackage[french]{babel}
\usepackage[latin9]{inputenc}
\usepackage[cyr]{aeguill}
\usepackage[T1]{fontenc}
\begin{document}
etex
% -MP-ADDITIONAL-HEADER
mpost -tex=latex myfile.mmpor just
mptopdf myfile.*
mptopdf --latex myfile.mmp
\documentclass{beamer}With xfig, I will suggest you first define the number of layers you want for your figure, let's say ten. Then set to 91,92,..,99 the depth of the elements that you want to be in the first layer; 81,82,..,89 the depth of the elements that you want to be in the second layer; and so on to 1,2,..9 the depth of the elements you want to be in the last layer.
%\usepackage ...
\usepackage{xmpmulti}
% \DeclareGraphicsRule{*}{mps}{*}{}
\begin{document}
\setbeamercovered{transparent}
% some frames with transparent
\setbeamercovered{invisible} % deactivate transparent covered mode
\begin{frame}
\frametitle{my frame with the pdf animated figure}
\multiinclude[graphics={width=\textwidth},format=pdf]{figures/myfile}
\end{frame}
\setbeamercovered{transparent} % back to transparent covered mode