Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (69)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (12377)

  • avformat/mov : parse sdtp atom and set the pkt disposable flag accordingly

    27 septembre 2019, par Matthieu Bouron
    avformat/mov : parse sdtp atom and set the pkt disposable flag accordingly
    

    Allows the creation of the sdtp atom while remuxing MP4 to MP4. This
    atom is required by Apple devices (iPhone, Apple TV) in order to accept
    2160p medias.

    • [DH] libavformat/isom.h
    • [DH] libavformat/mov.c
    • [DH] tests/ref/fate/hapqa-extract-snappy1-to-hapalphaonly
    • [DH] tests/ref/fate/hapqa-extract-snappy1-to-hapq
    • [DH] tests/ref/fate/hapqa-extract-snappy16-to-hapalphaonly
    • [DH] tests/ref/fate/hapqa-extract-snappy16-to-hapq
  • How do I record a specific application running on my Mac using ffmpeg ?

    3 janvier 2018, par Dave

    I just installed ffmpeg with using home-brew on Mac HighSierra. I want to record the contents (video only is fine) of an application running on my machine (as opposed to my entire Desktop). So I tried running the below

    davea$ ffmpeg -f gdigrab -framerate 25 -i title=DOSBox
    ffmpeg version 3.4.1 Copyright (c) 2000-2017 the FFmpeg developers
     built with Apple LLVM version 9.0.0 (clang-900.0.39.2)
     configuration: --prefix=/usr/local/Cellar/ffmpeg/3.4.1 --enable-shared --enable-pthreads --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-gpl --enable-libmp3lame --enable-libx264 --enable-libxvid --enable-opencl --enable-videotoolbox --disable-lzma
     libavutil      55. 78.100 / 55. 78.100
     libavcodec     57.107.100 / 57.107.100
     libavformat    57. 83.100 / 57. 83.100
     libavdevice    57. 10.100 / 57. 10.100
     libavfilter     6.107.100 /  6.107.100
     libavresample   3.  7.  0 /  3.  7.  0
     libswscale      4.  8.100 /  4.  8.100
     libswresample   2.  9.100 /  2.  9.100
     libpostproc    54.  7.100 / 54.  7.100
    Unknown input format: 'gdigrab'

    but as you can see, I’m getting this

    Unknown input format: 'gdigrab'

    error. What’s the right way to record video on my computer for only a specific application using ffmpeg ?

    Edit : Using hte suggestion in comments, I got this other error ...

    davea$ ffmpeg -f avfoundation -list_devices true -i ""
    ffmpeg version 3.4.1 Copyright (c) 2000-2017 the FFmpeg developers
     built with Apple LLVM version 9.0.0 (clang-900.0.39.2)
     configuration: --prefix=/usr/local/Cellar/ffmpeg/3.4.1 --enable-shared --enable-pthreads --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-gpl --enable-libmp3lame --enable-libx264 --enable-libxvid --enable-opencl --enable-videotoolbox --disable-lzma
     libavutil      55. 78.100 / 55. 78.100
     libavcodec     57.107.100 / 57.107.100
     libavformat    57. 83.100 / 57. 83.100
     libavdevice    57. 10.100 / 57. 10.100
     libavfilter     6.107.100 /  6.107.100
     libavresample   3.  7.  0 /  3.  7.  0
     libswscale      4.  8.100 /  4.  8.100
     libswresample   2.  9.100 /  2.  9.100
     libpostproc    54.  7.100 / 54.  7.100
    [AVFoundation input device @ 0x7fcbc160d0c0] AVFoundation video devices:
    [AVFoundation input device @ 0x7fcbc160d0c0] [0] FaceTime HD Camera
    [AVFoundation input device @ 0x7fcbc160d0c0] [1] Capture screen 0
    [AVFoundation input device @ 0x7fcbc160d0c0] AVFoundation audio devices:
    [AVFoundation input device @ 0x7fcbc160d0c0] [0] Built-in Microphone
    : Input/output error
  • Undefined symbol : _kCVPixelBufferOpenGLESCompatibilityKey [on hold]

    2 octobre 2019, par Zaki

    I‘m trying to ffmpeg with xocde,Always have this problem.

    search for _kCVPixelBufferOpenGLESCompatibilityKey,The key description on the Apple documentation is in CoreVideo.

    I have imported CoreVideo,but didn’t work

    include

    include "avformat.h"

    int main(int argc, const char * argv[])

    AVFormatContext       *pFormatCtx;
    int                   i, videoindex;
    AVCodecParameters     *pCodecCtx;
    AVCodec               *pCodec;
    char filepath[]="nwn.mp4";

    // Add this line, the compilation will go wrong
    av_register_all();

    return 0;

    Error message, no more description

    Here is the imported static library