
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (89)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (13573)
-
avcodec/magicyuvenc : put some slice work under parallel execution
3 juin 2023, par Paul B Mahol -
libavformat fails to link on Macos
24 avril 2022, par Bilal ShafiI'm trying to go through an ffmpeg tutorial however when I try to build my project I get the following error. I initialy thought that cmake's
find_path
andfind_library
was linking the wrong filesMark Setchell
showed that this was not the case. Now I'm not sure why the linker errors are occurring. Here is the minimum example that fails to compile and the aforementioned error.

[build] [1/1 100% :: 0.076] Linking CXX executable example
[build] FAILED: example 
[build] : && /usr/bin/clang++ -g -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.1.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -L/usr/local/opt/llvm/lib CMakeFiles/example.dir/main.cpp.o -o example /usr/local/lib/libavformat.dylib && :
[build] Undefined symbols for architecture x86_64:
[build] "avformat_open_input(AVFormatContext**, char const*, AVInputFormat const*, AVDictionary**)", referenced from:
[build] _main in main.cpp.o
[build] "avformat_free_context(AVFormatContext*)", referenced from:
[build] _main in main.cpp.o
[build] "avformat_alloc_context()", referenced from:
[build] _main in main.cpp.o
[build] ld: symbol(s) not found for architecture x86_64
[build] clang: error: linker command failed with exit code 1 (use -v to see invocation)
[build] ninja: build stopped: subcommand failed.



CMakeLists.txt :


cmake_minimum_required(VERSION 3.21)
set(CMAKE_CXX_STANDARD 17)


find_path(AVFORMAT_INCLUDE_DIRS libavformat/avformat.h REQUIRED)
find_library(AVFORMAT_LIBRARY avformat REQUIRED)

message(WARNING "AVFORMAT_LIBRARY=" ${AVFORMAT_LIBRARY})
message(WARNING "AVFORMAT_INCLUDE_DIRS=" ${AVFORMAT_INCLUDE_DIRS})

add_executable(example main.cpp)
target_link_libraries(example ${AVFORMAT_LIBRARY})
target_include_directories(example PRIVATE ${AVFORMAT_INCLUDE_DIRS})




main.cpp :


#include <libavformat></libavformat>avformat.h>

#include 


int main(int argc, char **argv) {
 if (argc < 2) {
 printf("example ");
 exit(EXIT_FAILURE);
 }

 AVFormatContext *pFormatContext = avformat_alloc_context();

 avformat_open_input(&pFormatContext, argv[1], nullptr, nullptr);
 printf("Format %s, duration %lld us", pFormatContext->iformat->long_name, pFormatContext->duration);


 avformat_free_context(pFormatContext);
}



-
Fixed TinyMCE Demo and added link on demo page. Fixes #382
20 avril 2012, par Max Lynchm demo/index.html m demo/tinymce/index.html Fixed TinyMCE Demo and added link on demo page. Fixes #382