Recherche avancée

Médias (0)

Mot : - Tags -/tags

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (111)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (5683)

  • dxva2_h264 : fix slice offset in long slice structs

    23 mars 2015, par Hendrik Leppkes
    dxva2_h264 : fix slice offset in long slice structs
    
    • [DH] libavcodec/dxva2_h264.c
  • How to deal with "[asf XX] too long payload" message in ffmpeg ?

    28 mars 2019, par Ayorus

    I am trying to cut a small section of a video using the following sentence :

    ffmpeg.exe -i video.wmv -ss 00:20:02 -to 00:20:09 -crf 22  "C:\test.mp4" -y

    However, ffmpeg hangs showing messages like :

    [asf @ 03327b00] too long payload 0kB time=00:00:00.00 bitrate=N/A speed=   0x
          Last message repeated 352 times
    [asf @ 03327b00] too long payload 0kB time=00:00:00.00 bitrate=N/A speed=   0x
         Last message repeated 331 times

    I have waited for more than 30 minutes and ffmpeg did not finish the cutting. Does anyone have any idea how to solve this ?

    Any suggestion will be appreciated

    PD. the ffprobe output of the source file is the following :

    ffprobe version N-81831-g97e7f03 Copyright (c) 2007-2016 the FFmpeg developers
     built with gcc 5.4.0 (GCC)
     configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-dxva2 --enable-libmfx --enable-nvenc --enable-avisynth --enable-bzlib --enable-libebur128 --enable-fontconfig --enable-frei0r --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libfreetype --enable-libgme --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenh264 --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroedinger --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxavs --enable-libxvid --enable-libzimg --enable-lzma --enable-decklink --enable-zlib
     libavutil      55. 32.100 / 55. 32.100
     libavcodec     57. 60.101 / 57. 60.101
     libavformat    57. 51.102 / 57. 51.102
     libavdevice    57.  0.102 / 57.  0.102
     libavfilter     6. 63.100 /  6. 63.100
     libswscale      4.  1.100 /  4.  1.100
     libswresample   2.  2.100 /  2.  2.100
     libpostproc    54.  0.100 / 54.  0.100
    [asf @ 03b7afe0] too long payload
       Last message repeated 159 times
    Input #0, asf, from 'F:\video.wmv':
     Metadata:
       WMFSDKVersion   : 11.0.5721.5145
       WMFSDKNeeded    : 0.0.0.0000
       IsVBR           : 0
       DeviceConformanceTemplate: M
     Duration: 01:41:25.95, start: 0.000000, bitrate: 1649 kb/s
       Stream #0:0(eng): Video: wmv2 (WMV2 / 0x32564D57), yuv420p, 640x480, 1500 kb/s, 29.97 fps, 29.97 tbr, 1k tbn, 1k tbc
       Stream #0:1(eng): Audio: wmav2 (a[1][0][0] / 0x0161), 44100 Hz, 2 channels, fltp, 128 kb/s
  • C# capture specific frame from video file using ffmpeg takes too long

    6 septembre 2018, par Ditza

    I am trying to take specific frame from full HD video file. I am using Accord.Video.FFMPEG.
    The read ReadVideoFrame takes something like 200ms. I need It to be much faster.
    Am I doing something wrong or this is the time it should takes ? What should I use to get the frame in few milliseconds ?

    VideoFileReader reader = new VideoFileReader();
    reader.Open(source);
    int frameN = (int)Math.Floor(((reader.FrameRate).ToDouble() * pos.Milliseconds) / 1000);
    Bitmap bkg = reader.ReadVideoFrame(frameN);

    Thanks,
    Ditza