Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (56)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (7830)

  • Why i can't use libx264 with FFMPEG on windows ?

    29 octobre 2020, par Reboot_My_Computer

    Hello there

    


    I'm trying to build game launcher that will start streaming when game starts, for this i am using FFMPEG.
It all works fine until i try to use libx264 as encoder.I have FFMPEG with libx264 compiled from https://github.com/BtbN/FFmpeg-Builds/releases. This is the command i am using for it :

    


    ffmpeg -f gdigrab -c:v libx264 -framerate 30 -i title="FiveM" -f flv rtmp://MYSITE.COM/stream/MYSECRETKEY


    


    Unfortunately i get this output :
FFMPEG OUTPUT

    


    You can clearly see in output picture that FFMPEG is compiled with libx264, please note that i'm doing this on Windows 10.

    


  • Add watermark text on mkv video using ffmpeg windows version [on hold]

    27 mars 2015, par sajjad hosseini

    I want to add a watermark text to a mkv video using ffmpeg windows version .
    I want the watermark to be like a subtitle that starts on minute 2 and lasts for 30 seconds and says : copyright to mysite.com . I tried mkvmerge to add a subtitle but it can be easily deleted by others , so now i’m relying on ffmpeg to do this for me . Can anyone help me with the process ? I want the watermark to be actually on the video and can’t be deleted using mkvmerge .

  • Building ffmpeg for Windows with MSYS and MinGW

    27 février 2014, par Tech Jerk

    I am trying to build ffmpeg for windows (Xp - SP2) as given here.

    ./configure -–extra-cflags=”-mno-cygwin -mms-bitfields” -–extra-ldflags=”-Wl, -add-stdcall-alias” -–enable-memalign-hack -–enable-shared -–disable-static -–target-os=mingw32

    The above command is placed in a myconfig file as instructed and when i run ./myconfig, the following error is displayed :

    Broken Shell detected. Trying alternatives.
    Trying Shell bash
    Unknown option "-–extra-cflags=-mno-cygwin".

    As suggested in the link i tried various options but still i was not able to succeed.

    My environment is Win XP with :

    • MinGW-5.1.6,
    • bash-2.05b-MSYS,
    • MSYS-1.0.10,
    • ffmpeg-0.5

    EDIT :

    After certain changes in the above command by referring howto i was able to successfully run the make command and i found the following DLL's in their respective directory

    • ffmpeg\libavcodec\avcodec-51.dll
    • ffmpeg\libavformat\avformat-51.dll
    • ffmpeg\libavutil\avutil-49.dll

    But i didn't see any ffmpeg\ffmpeg.exe file :(

    What could have gone wrong ?