Here, I save the first frame in a named \vbox. I can then recall the content (as is, or scaled and framed) with a \usebox.
I had to horizontally pad out the saved box a little; I think the padding is needed because the \vbox is of width \textwidth whereas the slide width is wider than that.
EDITED to remove stray blank frame.
MANUAL VERSION:
\documentclass{beamer}
\newsavebox\saveframe
\fboxsep=0pt
\begin{document}
%SAVE-FRAME
\savebox{\saveframe}{\vbox{
\begin{frame}
{1st Frame}
frame text from the first frame. I will now begin an itemized list. And we begin:
\begin{itemize}
\item AAA
\item BBB
\item CCC
\end{itemize}
\end{frame}}}
%PRESENT THE SAVE-FRAME AS IS
\begin{frame}
\usebox{\saveframe}
\end{frame}
%PRESENT THE 2ND FRAME INCLUDING A SCALED SAVE-FRAME
\begin{frame}
{2nd frame}
Here is my prior frame\par
\fbox{\scalebox{.6}{\hspace{1cm}\usebox{\saveframe}\hspace{1cm}}}
\end{frame}
\end{document}


AUTOMATED VERSION:
If one would like the boxing automated, I provide the sframe{} environment in the following MWE to output and save a frame. A {title} is a mandatory argument to the environment. A boxed, scaled version of the saved frame can be obtained with \savedframe{scale}, invoked inside a frame environment. The following MWE behaves identically to the manual version above.
\documentclass{beamer}
\global\newsavebox\thesaveframe
\newenvironment{sframe}[1]%
{\setbox0=\vbox\bgroup\begin{frame}{#1}}
{\end{frame}\leavevmode\unskip\setbox0=\lastbox \egroup%
\global\sbox{\thesaveframe}{\box0}
\begin{frame}\usebox{\thesaveframe}\end{frame}
}
\newcommand\savedframe[1]{\fboxsep=0pt%
\fbox{\scalebox{#1}{\hspace{1cm}\usebox{\thesaveframe}\hspace{1cm}}}%
}
\begin{document}
%SAVE-FRAME AND OUTPUT IT
\begin{sframe}{1st Frame}
frame text from the first frame. I will now begin an itemized list. And we begin:
\begin{itemize}
\item AAA
\item BBB
\item CCC
\end{itemize}
\end{sframe}
%PRESENT THE 2ND FRAME INCLUDING A SCALED SAVE-FRAME
\begin{frame}
{2nd frame}
Here is my prior frame\par
\savedframe{.6}
\end{frame}
\end{document}
\againframe[myframelabel]where you have named a particular framemyframelabelWelcome to TeX.SX! ;-) – Oct 19 '14 at 17:06\againframe– S.Key Oct 19 '14 at 17:12\includegraphics– S.Key Oct 19 '14 at 17:21pdftkcould easily extract the page and I imagine there is some equivalent for Windows. (But my imagination is, admittedly, ill informed on this point.) – cfr Oct 19 '14 at 22:45