Recherche avancée

Médias (91)

Autres articles (104)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

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

Sur d’autres sites (12131)

  • GStreamer force decodebin2 output type

    6 septembre 2014, par user975326

    I’m trying to write a program in C which replicates the pipeline :

    gst-launch -v filesrc location="bbb.mp4" ! decodebin2 ! ffmpegcolorspace ! autovideosink

    DecodeBin2 has a dynamic pad and I’ve attached a callback to handle its creation. I am unable to link it to ffmpegcolorspace however because the pad capability is always video/quicktime. I would like it to be video/x-raw-yuv or something else which is compatible with ffmpegcolorspace.

    Is this possible to force/select the output type of decodebin2 ?

    Thanks.

    EDIT : Please do not recommend playbin. I’m trying to learn how how to make pipelines.

  • Undeclared error when compiling ffmpeg3.4.2 on my PC (win10 64bit)

    2 avril 2018, par Colin0114

    I try to compile ffmpeg 3.4.2 ( source code was git clone from repository of the latest version) on my PC of win10 ( 64bit )

    Here is my compiling steps :
    (1) install MinGW, https://sourceforge.net/projects/mingw/files/latest/download?source=files
    Installation location : c :/MinGW
    I added ’call "location/vcvars64.bat" ’ in ’msys.bat’
    (2) install yasm ( win64.exe ), http://yasm.tortall.net/Download.html
    Copy it to folder ’c :/windows/system32’
    (3) then ’git clone https://github.com/FFmpeg/FFmpeg.git’ in Git Bash
    (4) cd to ffmpeg, run ’./configure —disable-static —enable-shared -arch=x86_64’

    It spit a WARNING : ’pkg-config not found, library detection may fail’
    And I ignored it, and go on running ’make’, but failed ;

    ERROR messages in the following :
    ./compat/w32pthreads.h:122:9 : error : unknown type name ’INIT_ONCE’
    typedef INIT_ONCE pthread_once_t ;
    ./compat/w32pthreads.h:131:5 : error : implicit declaration of function ’InitOnceComplete’
    libavdevice/alldevices.c : At top level :
    ./compat/w32pthreads.h:123:27 : error : ’INIT_ONCE_STATIC_INIT’ undeclared here (not in a function) #define PTHREAD_ONCE_INIT INIT_ONCE_STATIC_INIT
    ^
    ./libavutil/thread.h:145:22 : note : in expansion of macro ’PTHREAD_ONCE_INIT’
    #define AV_ONCE_INIT PTHREAD_ONCE_INIT

    libavdevice/alldevices.c:92:37 : note : in expansion of macro ’AV_ONCE_INIT’
    static AVOnce av_device_next_init = AV_ONCE_INIT ;

  • Using FFMpeg Video Frames From directories

    11 août 2017, par Peter Friedlander

    I have hundreds of folders containing video, audio, images.. which I need to create video thumbs foreach 10 seconds of video of every video file found (mp4/avi/mov/3gp) and placed in one location /thumbs/.

    I have this, which I’ve been trying to figure out for days.

    find . -exec ffmpeg -i {} -vf fps=1/8 {}.png \;

    or

    find /Users/media/Desktop/videoframes/input/  -regex ".*\.\(mp4\)" -print0 | while read -d $'\0' file;  do  ffmpeg -i $file -vf fps=1/8 ${file}%d.png done

    I know little about the syntax but want to learn more but Im stumped.

    Thanks !