The clean solution is to redefine the title page template. This approach will give you all opportunities to fine tune the result to fit your needs.
\documentclass{beamer}
\usetheme{Hannover}
\title{Presentation Title}
\subtitle{Optional Subtitle}
\author{F.~Author\inst{1} \and S.~Another\inst{2}}
\institute[Universities of Somewhere and Elsewhere] % (optional, but mostly needed)
{
\inst{1}%
University of Somewhere
\inst{2}%
University of Elsewhere}
\date{Conference Name, 2013}
\makeatletter
\setbeamertemplate{title page}{
\vbox{}
\vfill
\begingroup
\centering
\begin{beamercolorbox}[sep=8pt,center]{title}
\usebeamerfont{title}\inserttitle\par%
\ifx\insertsubtitle\@empty%
\else%
\vskip0.25em%
{\usebeamerfont{subtitle}\usebeamercolor[fg]{subtitle}\insertsubtitle\par}%
\fi%
\end{beamercolorbox}%
\vskip1em\par
\begin{beamercolorbox}[sep=8pt,center]{author}
\usebeamerfont{author}\insertauthor
\end{beamercolorbox}
\begin{beamercolorbox}[sep=8pt,center]{institute}
\usebeamerfont{institute}\insertinstitute
\end{beamercolorbox}
% ----------------------- new
\begin{beamercolorbox}[sep=8pt,center]{author}
\usebeamerfont{author}my name
\end{beamercolorbox}
\begin{beamercolorbox}[sep=8pt,center]{institute}
\usebeamerfont{institute}my university
\end{beamercolorbox}
% ------------------------
\begin{beamercolorbox}[sep=8pt,center]{date}
\usebeamerfont{date}\insertdate
\end{beamercolorbox}\vskip0.5em
{\usebeamercolor[fg]{titlegraphic}\inserttitlegraphic\par}
\endgroup
\vfill
}
\makeatother
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\end{document}

However on your on risk and with the warning that this is a) a dirty hack and b) might cause problems with the pdf properties if you don't give a short institute which can even render some pdf viewers unable to open your pdf - be warned!
\documentclass{beamer}
\usetheme{Hannover}
\title{Presentation Title}
\subtitle{Optional Subtitle}
\author{F.~Author\inst{1} \and S.~Another\inst{2}}
\institute[Universities of Somewhere and Elsewhere] % (optional, but mostly needed)
{
\inst{1}%
University of Somewhere
\inst{2}%
University of Elsewhere\par
my name\par
my university}
\date{Conference Name, 2013}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\end{document}