Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (104)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

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

Sur d’autres sites (11837)

  • Cut detection with ffprobe

    2 février 2015, par cronk

    I’m trying to detect cuts between shots with ffprobe. I use the following command :

    ffprobe -show_frames -of compact=p=0 -f lavfi "movie=test_clip.avi,select=gt(scene\,.4)" > test_clip_cuts.txt

    It works just fine, there’s no question. But now I want to detect the cuts in certain range only. Let’s say from 3 to 8 seconds. How I could do that ?

    I tried to use -read_intervals 3%8 but it gave me an error :

    Could not seek to position 3000000: Invalid argument
    Could not read packets in interval id:0 start:3 end:8

    Command -read_intervals %+3 (read from the very begining to 3rd second) works, but in weird way - it detects cuts up to 4th second (and over, I guess).

    So I’m confused. What are those "intervals" and how to use them ? Is it possible to set the range in regular seconds ?

    Just in case here is my test clip https://yadi.sk/i/nd-c12mYeQ2nb

  • Cut detection with ffprobe

    8 juillet 2019, par Roman Volodin

    I’m trying to detect cuts between shots with ffprobe. I use the following command :

    ffprobe -show_frames -of compact=p=0 -f lavfi "movie=test_clip.avi,select=gt(scene\,.4)" > test_clip_cuts.txt

    It works just fine, there’s no question. But now I want to detect the cuts in certain range only. Let’s say from 3 to 8 seconds. How I could do that ?

    I tried to use -read_intervals 3%8 but it gave me an error :

    Could not seek to position 3000000: Invalid argument
    Could not read packets in interval id:0 start:3 end:8

    Command -read_intervals %+3 (read from the very begining to 3rd second) works, but in weird way - it detects cuts up to 4th second (and over, I guess).

    So I’m confused. What are those "intervals" and how to use them ? Is it possible to set the range in regular seconds ?

    Just in case here is my test clip https://yadi.sk/i/nd-c12mYeQ2nb

  • Undefined Reference for 1 of many constructors for QVideoFrame

    26 novembre 2013, par Robadob

    I've come across a weird issue while trying to convert an FFMPeg AVFrame to a QT QVideoFrame ;

    I'm trying to create the QVideoFrame using this constructor

    QVideoFrame(int bytes, const QSize &size, int bytesPerLine, PixelFormat format);

    It compiles fine, however at link I receive the issue ;

    ~myfile.cpp:130: undefined reference to `_imp___ZN11QVideoFrameC1EiRK5QSizeiNS_13AVPixelFormatE'
    collect2.exe: error: ld returned 1 exit status

    (As it's a linker issue, I'm presuming you won't want code examples).

    I've compiled QT 4.8.5 myself using mingw32 and the other constructors (no params and QImage param) for QVideoFrame that I've tested compile and link correctly. From looking at the QT sources there is nothing that stands out as different for this constructor for it to not be included in the library.

    At this point I'm trying to implement an extension of QAbstractVideoBuffer so I can use that constructor, however that's proving harder than it should be & I'd love to understand why this issue is occurring.

    Thanks