
Recherche avancée
Autres articles (76)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (9457)
-
Adding ffmpeg to clion project
21 novembre 2020, par potu1304I would liket to add ffmpeg to Clion but I have some problems with it.
My MakeLists.txt looks liek this :



cmake_minimum_required(VERSION 3.10)
project(ffmpeg)

set(CMAKE_CXX_STANDARD 11)

include_directories(libs/ffmpeg/)
include_directories(libs/ffmpeg/include/libavutil/)
include_directories(libs/ffmpeg/include/libaccodec/)
include_directories(libs/ffmpeg/include/libavdevice/)
include_directories(libs/ffmpeg/include/libavfilter/)
include_directories(libs/ffmpeg/include/libavformat/)

include_directories(libs/ffmpeg/include/)
link_directories(libs/ffmpeg/lib/)

set(SOURCE_FILES main.cpp)


add_executable(ffmpeg main.cpp)

target_link_libraries(
 ffmpeg
 avcodec
 avdevice
 avfilter
 avformat
 avresample
 avutil
 postproc
 swresample
 swscale
)




I am not sure if I added the libraries and includes in the right way, beacause in my simple main.cpp it can't resolve avcodec_configuration().
My project layout looks as follows :



ffmpeg
 -libs
 -include
 -libavcodec
 .
 .
 .
 -lib
 -avcodec.lib
 -main.cpp




EDIT : 
Now all includes are found by the compiler. BUt if I compile I get following error :



c:/mingw/bin/../lib/gcc/mingw32/6.3.0/../../../../mingw32/bin/ld.exe: cannot find -lavresample
collect2.exe: error: ld returned 1 exit status
mingw32-make.exe[2]: *** [ffmpeg.exe] Error 1
mingw32-make.exe[1]: *** [CMakeFiles/ffmpeg.dir/all] Error 2
mingw32-make.exe: *** [all] Error 2
CMakeFiles\ffmpeg.dir\build.make:96: recipe for target 'ffmpeg.exe' failed
CMakeFiles\Makefile2:66: recipe for target 'CMakeFiles/ffmpeg.dir/all' failed
Makefile:82: recipe for target 'all' failed



-
How to create a simple C++ project in Eclipse and call an ffmpeg API ? [on hold]
1er juin 2017, par mooseIs it possible to create a simple C++ project in Eclipse and call an ffmpeg API ?
If it is, how ? -
How to add .Net Standard Nuget package into .Net 4.5 Framework Project ?
16 juillet 2022, par Arjun NatarajanI am trying to install https://www.nuget.org/packages/FFMpegCore/4.8.0#dependencies-body-tab (FFMpegCore) Nuget package in my .Net 4.5 Console project. But unfortunately, getting the below error




Error NU1202 Package FFMpegCore 4.8.0 is not compatible with net45 (.NETFramework,Version=v4.5) / win-x86. Package FFMpegCore 4.8.0 supports : netstandard2.0 (.NETStandard,Version=v2.0) ScreenCapturer C :\source\repos\ScreenCapturer\ScreenCapturer.csproj 1




Actually trying to stream .png images to FFmpeg input pipe & then convert them as a video.


P.S : Kind of new to this FFMpeg as well. So any help would be appreciated.