Recherche avancée

Médias (91)

Autres articles (11)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (2606)

  • amfenc : Add DXVA2 hardware frame input support

    14 avril 2018, par Alexander Kravchenko
    amfenc : Add DXVA2 hardware frame input support
    

    Adds support for AMF initialisation from a DXVA2 (Direct3D9) device, and
    then allows passing DXVA2 surfaces into an AMF encoder.

    Signed-off-by : Mark Thompson <sw@jkqxz.net>

    • [DH] libavcodec/amfenc.c
  • Unable to link FFMpeg libraries in Visual studio 2012

    29 juin 2013, par Pferd

    I have been trying to link the FFMPEG static libraries to Visual studio 2012 in c++ environment. But i get the following error.

    • Error 1 error LNK1104 : cannot open file
      'avcodec.lib' C :\Users\username\Documents\Visual Studio
      2012\Projects\ConsoleApplication5\ConsoleApplication5\LINK ConsoleApplication5

    my lib files were located in C :\Users\username\Documents\Visual Studio 2012\Projects\ConsoleApplication5\ConsoleApplication5\ExtLib\lib

    The compile seems to be fine. The command line is

    • /Yu"stdafx.h" /GS /W3 /Zc:wchar_t
      /I"C :\Users\username\Documents\Visual Studio
      2012\Projects\ConsoleApplication5\ConsoleApplication5\ExtLib\include"
      /Zi /Gm /Od /sdl /Fd"x64\Debug\vc110.pdb" /fp:precise /D "WIN32" /D
      "_DEBUG" /D "_CONSOLE" /D "_UNICODE" /D "UNICODE" /errorReport:prompt
      /WX- /Zc:forScope /RTC1 /Gd /MTd /Fa"x64\Debug\" /EHsc /nologo
      /Fo"x64\Debug\" /Fp"x64\Debug\ConsoleApplication5.pch"

    The main issue seems to be at the linking stage where I have just not been able to get VS2012 to find my ffmpeg .lib files

    The linker command line is below :

    • /OUT :"C :\Users\username\Documents\Visual Studio
      2012\Projects\ConsoleApplication5\x64\Debug\ConsoleApplication5.exe"
      /MANIFEST /NXCOMPAT /PDB :"C :\Users\username\Documents\Visual Studio
      2012\Projects\ConsoleApplication5\x64\Debug\ConsoleApplication5.pdb"
      /DYNAMICBASE "avcodec.lib" "kernel32.lib" "user32.lib" "gdi32.lib"
      "winspool.lib" "comdlg32.lib" "advapi32.lib" "shell32.lib"
      "ole32.lib" "oleaut32.lib" "uuid.lib" "odbc32.lib" "odbccp32.lib"
      /DEBUG /MACHINE:X64 /OPT:NOREF /INCREMENTAL
      /PGD :"C :\Users\username\Documents\Visual Studio
      2012\Projects\ConsoleApplication5\x64\Debug\ConsoleApplication5.pgd"
      /SUBSYSTEM:CONSOLE /MANIFESTUAC :"level='asInvoker' uiAccess='false'"
      /ManifestFile :"x64\Debug\ConsoleApplication5.exe.intermediate.manifest"
      /ERRORREPORT:PROMPT /NOLOGO
      /LIBPATH :"/LIBPATH:C :\Users\username\Documents\Visual Studio
      2012\Projects\ConsoleApplication5\ConsoleApplication5\ExtLib\lib"
      /TLBID:1

    I cant figure out why the linker cant locate my ffmpeg lib files even though they are physically located in the /LIBPATH area - c :...\vs12...\ExtLib\lib

  • screen_capture_recorder to record 2nd monitor ffmpeg Win 7

    29 mars 2020, par julesverne

    I use exactly what ffmpeg suggests on the screen_capture_recorder ffmpeg faq to record desktop (located here)

    ffmpeg.exe -f dshow -i video="screen-capture-recorder":audio=%Device% -vcodec libx264 -pix_fmt yuv420p -preset ultrafast -acodec pcm_s16le -ac 1 -ar 22050 -t %Duration% out.mkv

    works fine. But it records everything. I specifically only want to record what’s on the 2nd monitor.

    Windows 7 64 bit.

    Anyone have any ideas ?