Recherche avancée

Médias (0)

Mot : - Tags -/content

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (73)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (7612)

  • x86inc : Prefer r14/r15 over r12/r13 on x86-64

    22 avril 2017, par Henrik Gramner
    x86inc : Prefer r14/r15 over r12/r13 on x86-64
    

    Due to a peculiarity in the ModR/M addressing encoding, the r12 and r13
    registers sometimes requires an additional byte when used as a base register.

    r14 and r15 doesn't have that issue, so prefer using them.

    • [DH] libavutil/x86/x86inc.asm
  • FFMPEG build with cmake on windows

    27 novembre 2020, par BloodyFerret

    I 'm trying to build project with ffmpeg libraries by Cmake.
ffmpeg is installed correctly. When i type ffmpeg on cmd i have :

    


    ffmpeg version N-99488-gbc43588a71 Copyright (c) 2000-2020 the FFmpeg developers
  built with gcc 9.3-win32 (GCC) 20200320
  configuration: --prefix=/ffbuild/prefix --pkg-config-flags=--static --pkg-config=pkg-config --cross-prefix=x86_64-w64-mingw32- --arch=x86_64 --target-os=mingw32 --enable-gpl --enable-version3 --disable-debug --enable-shared --disable-static --disable-debug --enable-iconv --enable-zlib --enable-libxml2 --enable-libfreetype --enable-libfribidi --enable-gmp --enable-lzma --enable-fontconfig --enable-libvmaf --enable-vulkan --enable-libvorbis --enable-amf --enable-libaom --enable-avisynth --enable-libdav1d --enable-ffnvcodec --enable-cuda-llvm --enable-libglslang --enable-libass --enable-libbluray --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvpx --enable-libwebp --enable-libmfx --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-librav1e --enable-schannel --enable-sdl2 --enable-libsoxr --enable-libsrt --enable-libsvtav1 --enable-libtwolame --enable-libvidstab --enable-libx264 --enable-libx265 --enable-libxvid --enable-libzimg --extra-cflags=-DLIBTWOLAME_STATIC --extra-cxxflags= --extra-ldflags=-pthread --extra-libs=-lgomp
  libavutil      56. 60.100 / 56. 60.100
  libavcodec     58.110.100 / 58.110.100
  libavformat    58. 62.100 / 58. 62.100
  libavdevice    58. 11.102 / 58. 11.102
  libavfilter     7. 87.100 /  7. 87.100
  libswscale      5.  8.100 /  5.  8.100
  libswresample   3.  8.100 /  3.  8.100
  libpostproc    55.  8.100 / 55.  8.100
Hyper fast Audio and Video encoder
usage: ffmpeg [options] [[infile options] -i infile]... {[outfile options] outfile}...

Use -h to get full help or, even better, run 'man ffmpeg' 


    


    But when i try to build my project i get :

    


    -- Selecting Windows SDK version 10.0.17763.0 to target Windows 10.0.18363.
-- Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE)
-- Using Win32 for window creation
-- Checking for module 'libavcodec'
--   No package 'libavcodec' found
CMake Error at C:/Program Files/CMake/share/cmake-3.18/Modules/FindPkgConfig.cmake:545 (message):
  A required package was not found
Call Stack (most recent call first):
  C:/Program Files/CMake/share/cmake-3.18/Modules/FindPkgConfig.cmake:733 (_pkg_check_modules_internal)
  lib/FFmpeg/CMakeLists.txt:5 (pkg_check_modules)


-- Configuring incomplete, errors occurred!
See also "C:/Users/mswar/Desktop/App Video/video-app/build/CMakeFiles/CMakeOutput.log".
See also "C:/Users/mswar/Desktop/App Video/video-app/build/CMakeFiles/CMakeError.log".


    


    I have no idea what's going on. On path : C :\Users\mswar\Desktop\App Video\video-app i have CMakeLists.txt file :

    


    project(video-app C CXX)
set (CMAKE_CXX_STANDARD 14)



add_subdirectory(lib/glfw)
add_subdirectory(lib/FFmpeg)
add_definitions(-DGL_SILENCE_DEPRECATION)

if(WIN32)
    list(APPEND EXTRA_LIBS
    "-lglu32 -lopengl32")
set(CMAKE_EXE_LINKER_FLAGS "-std=gnu99 -static -static-libgcc -static-libstdc++ -mwindows")
else()
list(APPEND EXTRA_LIBS"-lGL -lGLU -lX11")
endif()

list(APPEND SOURCES
src/main.cpp
src/load_frame.cpp
)
add_executable(video-app ${SOURCES})
target_link_libraries(video-app FFmpeg glfw ${EXTRA_LIBS})


    


    In : C:\Users\mswar\Desktop\App Video\video-app\lib\FFmpeg i have CMakeLists.txt file with content :

    


    cmake_minimum_required(VERSION 3.14)
project(FFmpeg)

find_package(PkgConfig REQUIRED)
pkg_check_modules(AVCODEC       REQUIRED IMPORTED_TARGET libavcodec)
pkg_check_modules(AVFORMAT      REQUIRED IMPORTED_TARGET libavformat)
pkg_check_modules(AVFILTER      REQUIRED IMPORTED_TARGET libavfilter)
pkg_check_modules(AVDEVICE      REQUIRED IMPORTED_TARGET libavdevice)
pkg_check_modules(AVUTIL        REQUIRED IMPORTED_TARGET libavutil)
pkg_check_modules(ASWRESAMPLE   REQUIRED IMPORTED_TARGET libswresample)
pkg_check_modules(SWSCALE       REQUIRED IMPORTED_TARGET libswrescale)


add_library(FFmpeg INTERFACE IMPORTED GLOBAL)
target_include_directories(FFmpeg INTERFACE
${AVCODEC_INCLUDE_DIRS}
${AVFORMAT_INCLUDE_DIRS}
${AVFILTER_INCLUDE_DIRS}
${AVDEVICE_INCLUDE_DIRS}
${AVUTIL_INCLUDE_DIRS}
${SWRESAMPLE_INCLUDE_DIRS}
${SWSCALE_INCLUDE_DIRS}
)
target_link_options(FFmpeg INTERFACE
${AVCODEC_LDFLAGS}
${AVFORMAT_LDFLAGS}
${AVFILTER_LDFLAGS}
${AVDEVICE_LDFLAGS}
${AVUTIL_LDFLAGS}
${SWRESAMPLE_LDFLAGS}
${SWSCALE_LDFLAGS}
)


    


    Kindly please help !

    


  • FFMPEG/libavfilter drawtext scaling without affecting video [duplicate]

    23 avril 2019, par Captain Jack

    This question already has an answer here :

    How can I scale drawtext without affecting the input video ?

    Here’s my attempt - this filter is applied in C but is equivalent to -filter_complex in command line.

    [in]drawtext=text='Test Text': fontcolor=white: fontsize=w/40: x=w/20: y=h*16/18:shadowx=1:shadowy=1,scale=iw/2:ih/3[out]

    The above does scale text but it also affects video as it’s part of the drawtext input.

    I tried things like :

    nullsrc=s=iwxih[ns];
    [ns]drawtext=text='Test Text': fontcolor=white: fontsize=w/40: x=w/20: y=h*16/18:shadowx=1:shadowy=1,scale=iw/2:ih/3[text];
    [in][text]overlay=0:0[out]

    But it doesn’t seem to like nullsrc and it hangs... or I am doing something wrong.

    Any ideas ?