Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (25)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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 ;

Sur d’autres sites (3495)

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

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

    12 avril 2024, par Santhosh

    I have WSL2 and ubuntu installed inside it.

    


    I have ffmpeg command line installed inside it.

    


    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)

    


    I tried the below command.

    


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

    


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


    


    but it results in blank screen video

    


  • 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