Recherche avancée

Médias (91)

Autres articles (90)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • failed to set frame number in opencv in cpp

    28 février 2018, par Madhu Nadendla

    I am trying to set frame position of opened videofile using OpenCV in C++ but it returns 0.

    solution 1

    bool success = capture.set(CV_CAP_PROP_POS_FRAMES, noFrame);

    double frameRate = capture.get(CV_CAP_PROP_FPS);
  • ogg : Provide an option to offset the serial number

    30 janvier 2015, par Luca Barbato
    ogg : Provide an option to offset the serial number
    

    The ogg serial number doubles as codec id and sequence
    value for concatenated samples.

    • [DBH] doc/muxers.texi
    • [DBH] libavformat/oggenc.c
  • ffmpeg - incorrect number of image sequence based on duration and fps

    24 janvier 2015, par user2248745

    I’m trying to create image sequence from .mp4 file. Problem is, that I get incorrect number of image. ffprobe shows following output

    ffprobe version N-54921-g436616f Copyright (c) 2007-2013 the FFmpeg developers
     built on Jul 24 2013 18:07:04 with gcc 4.7.3 (GCC)
     configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libcaca --enable-libfreetype --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroedinger --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib
     libavutil      52. 40.100 / 52. 40.100
     libavcodec     55. 19.100 / 55. 19.100
     libavformat    55. 12.102 / 55. 12.102
     libavdevice    55.  3.100 / 55.  3.100
     libavfilter     3. 81.103 /  3. 81.103
     libswscale      2.  4.100 /  2.  4.100
     libswresample   0. 17.103 /  0. 17.103
     libpostproc    52.  3.100 / 52.  3.100
    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '../matlab/3_AncientDiscoveries1_stroje.mp4':
     Metadata:
       major_brand     : mp42
       minor_version   : 1
       compatible_brands: mp42mp41
       creation_time   : 2013-08-15 12:35:00
     Duration: 00:10:00.00, start: -1.880000, bitrate: 1510 kb/s
       Stream #0:0(ces): Audio: aac (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 164 kb/s
       Metadata:
         creation_time   : 2013-08-15 12:35:00
         handler_name    : Apple Sound Media Handler
       Stream #0:1(und): Video: h264 (Main) (avc1 / 0x31637661), yuv420p, 708x574 [SAR 64:45 DAR 7552:4305], 1336 kb/s, 25 fps, 25 tbr, 90k tbn, 180k tbc
       Metadata:
         creation_time   : 2013-08-15 12:35:00
         handler_name    : Apple Video Media Handler

    I created image sequence using fps 25.0 and I would expect 15000 (=10*60*25) images, but there are 15048 images. I think it corresponds to negative start time (10*60+1.88)*25=15047

    ffmpeg -r fps -i ../matlab/3_AncientDiscoveries1_stroje.mp4 -f image2 outdir/image-%%07d.png

    Is there a way how to correct the expected number of images ? I need to do some postprocessing so I need to know exactly, where are those additional images from.

    Thanks a lot for your response

    filip