Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (56)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • 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 (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (6135)

  • configure : Don’t add -fPIC to asflags when targeting windows

    12 octobre 2017, par Martin Storsjö
    configure : Don’t add -fPIC to asflags when targeting windows
    

    On X86 windows, asflags weren’t actually ever used for anything,
    since assembling used x86asflags instead, and that flags list
    had -DPIC already.

    This fixes building shared libraries with clang for arm/aarch64
    windows. (This wasn’t an issue when in msvc mode before, since
    we don’t try to enable pic at all there, since the msvc armasm
    assembler fails on our pic constructs there.)

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] configure
  • how to record screen of windows using ffmpeg inside WSL [closed]

    12 avril 2024, par Santhosh

    I have WSL2 and ubuntu installed inside it.

    &#xA;

    I have ffmpeg command line installed inside it.

    &#xA;

    Now I am not sure how to record the screen. Can someone help me what command options to be used to record screen (including windows UI)

    &#xA;

    I tried the below command.

    &#xA;

    Opened powershell in windows, then entered into wsl and then ran the below command

    &#xA;

     ffmpeg -f x11grab -y -framerate 30 -s 1920x1080 -i :0.0 -c:v libx264 -preset superfast -crf 18 out.mp4&#xA;

    &#xA;

    but it results in blank screen video

    &#xA;

  • DirectShow / x264 / AviSynth and Windows Server 2008 SP2

    15 novembre 2011, par Tim

    I'm having a hard time getting AviSynth to open video files on Windows Server 2008 SP2 (32 bit). I'm aware of the sound card issue, right now I'm using Audio=false. I've tried installing the below, but I always get the error "No combination of filters could be found to render the stream". I'm using DirectShowSource, but I don't have to ... I'm open that can open most formats your average Windows 7 machine can handle.

    I've installed :

    • "Desktop Extensions" - which installed Media Player and codecs
    • haali media splitter and ffdshow
    • Windows Media Services (for streaming, this supposedly had the mpeg codecs, but it doesn't) Windows Essentials Media Codec Pack
    • K-Lite Codec Pack Full VLC
    • QuickTime Tried copying mpeg.dll codecs from 32 bit Windows 7 to Server and regsvr32'ing them, but get error
    • Tried copying *.AX filters from 32 bit Windows 7 to server and regsvr32'ing, but still get AVS error

    AVS Script :

    • video0 = DirectShowSource("video0.avi", fps=30, pixel_type="RGB24", Audio=false)
    • video1 = DirectShowSource("video1.avi", fps=30, pixel_type="RGB24", Audio=false)
    • Dissolve(video0, video1, 30)

    Command Line :

    • x264 test.avs -o test.mp4 —bframes 3 —ref 3 —vbv-maxrate 2500 —vbv-bufsize=25000 —level 40 —threads

    AVS Error :

    • avs [error] : "No combination of filters could be found to render the stream"

    Has anyone gotten this working on Windows Server ? If so what filters codecs or other setup do I need ?

    Thank you for the time.