Recherche avancée

Médias (0)

Mot : - Tags -/images

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

Autres articles (76)

  • L’espace de configuration de MediaSPIP

    29 novembre 2010, par

    L’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
    Il permet de configurer finement votre site.
    La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (7561)

  • Using ffmpeg with frei0r on windows 10. Can't find module from frei0r

    21 février 2023, par Denis

    I am trying to add a filter to my video using ffmpeg and frei0r filters on windows 10. ffmpeg.exe is located in the system32 folder. ffmpeg works fine on other tasks. As soon as I try to add the frei0r filter, I get an error :

    


    Could not find module 'glow'.
Error initializing filter 'frei0r' with args 'glow:20'


    


    I downloaded the frei0r dll files from the official site and placed them in the system32 folder, and then placed them in another folder. Additionally, I registered the path :

    


    set FREI0R_PATH=C:\WINDOWS\system32\frei0r-1


    


    In cmd I enter the following command :

    


    ffmpeg -loglevel debug -i 1.mp4 -vf "frei0r=glow:20" -t 10 1out.mp4


    


    help me

    


    I tried everything I saw online and nothing helped.

    


  • matroskadec : introduce resync function.

    28 mai 2013, par Sean McGovern
    matroskadec : introduce resync function.
    

    This allows handling matroska files with errors.
    Fixes test4.mkv and test7.mkv from the official Matroska test suite,
    and by extension Bugzilla #62.

    Based on a patch by Reimar Doffinger <Reimar.Doeffinger@gmx.de>

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DH] libavformat/matroskadec.c
  • C# Flyleaf Loading FFmpeg libraries ':FFmpeg' failed

    2 octobre 2023, par Dmytro Kardash

    I'm trying to link ffmpeg libraries in EngineConfig

    &#xA;

    EngineConfig engineConfig = new EngineConfig();&#xA;engineConfig.FFmpegPath = @"C:\somepath";&#xA;

    &#xA;

    Relative, absolute it doesn't matter.&#xA;Anyway it's always "Loading FFmpeg libraries ':FFmpeg' failed"

    &#xA;

    Summary for EngineConfig says

    &#xA;

    // Summary:&#xA;//     Required to register ffmpeg libraries. Make sure you provide x86 or x64 based&#xA;//     on your project.&#xA;//     :<path> for relative path from current folder or any below&#xA;//     <path> for absolute or relative path&#xA;</path></path>

    &#xA;

    I suggest that I am using improper libraries or something. I've got ones from official ffmpeg github as it is. Also I've tried FFmpeg.Autogen.dll, FFMpegCore.dll.

    &#xA;