I am preparing a presentation, I know some people don't like figure to be used for presentation etc. however, it is what I know and it works for me so I keep it simple as I can manage it :-)
I want to move the footnote in the bottom of the page to the far left, is it possible to do that ?
\documentclass{beamer}
\usepackage[labelformat=empty]{caption}
\begin{document}
\section{My photo}
\begin{frame}
\frametitle{my photos}
\footnotesize\textbf Is this the same as previous figure?
\begin{figure}[h!]
\caption{This is an amazing photo\footnote{\url{https://www.linternaute.fr/dictionnaire/fr/definition/figure-1/}}}
\centering
\includegraphics[width=0.4\textwidth]{photo1.jpg}
\end{figure}
\footnotesize This figure comes from a very good photographer \footnote{\tiny Definition of figure (Entry 1 of 2)}
\end{frame}
\end{document}

figurefor a presentation, the only reason ever to use figure is to allow the text to be moved to help with automatic page breaking, that isn't something you want in a presentation. It's also impossible to have page level footnotes from a figure as it is a float box – David Carlisle Feb 28 '19 at 22:16