Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (103)

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

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (7135)

  • ffmpeg Unrecognized option 'tune'

    27 décembre 2016, par sangjun

    I’m using ffmpeg on node.js. And option ’-tune zerolatency’ for low latency

    But when I insert "-tune zerolatency", I get an error : Unrecognized option ’tune’.

    Can anyone help ? I have no idea what to do.

    Here’s the script.

    let token = '@!#!@#%@$@#%#^^!@$@#$@#$@#$^@#$'
    let option = [
       '-i', 'pipe:0', //mpeg4
       '-acodec', 'copy',
       '-vcodec', 'copy',
       '-s', '284x164',
       '-preset', 'ultrafast',
       '-tune', 'zerolatency',
       '-f', 'flv',
       'rtmp://localhost:1935/s/' + token,
    ];
    ffmpeg = spawn("ffmpeg", option);

    ffmpeg.stdin.write(streaming_data);

    Here’s the ffmpeg version

    ffmpeg version N-82166-g894e7ef Copyright (c) 2000-2016 the FFmpeg developers
     built with gcc 4.8.3 (GCC) 20140911 (Red Hat 4.8.3-9)
     configuration: --prefix=/usr/local/ffmpeg_build --extra-cflags=-I/usr/local/ffmpeg_build/include --extra-ldflags=-L/usr/local/ffmpeg_build/lib --bindir=/usr/local/bin
     libavutil      55. 35.100 / 55. 35.100
     libavcodec     57. 65.100 / 57. 65.100
     libavformat    57. 57.100 / 57. 57.100
     libavdevice    57.  2.100 / 57.  2.100
     libavfilter     6. 66.100 /  6. 66.100
     libswscale      4.  3.100 /  4.  3.100
     libswresample   2.  4.100 /  2.  4.100
  • ffmpeg returns 'frame_pts' as unrecognized option

    25 janvier 2018, par Hélder

    Earlier today I posted a question about frame extration with keyframes per encoding order (here) and I tried to run the command provided in one of the answers but ffmpeg returns :

    Unrecognized option 'frame_pts'.

    Error splitting the argument list : Option not found

    Any clue how to make ffmpeg to recognize ’frame_pts’ option ?
    The full command that I ran is :

    ffmpeg -i input.mp4 "select='eq(pict_type\,I)" -vsync 0 -frame_pts 1 thumbnails-%02d-I.png
  • avfilter/vf_gblur_vulkan : add sizeV option

    10 janvier 2022, par Wu Jianhua
    avfilter/vf_gblur_vulkan : add sizeV option
    

    This commit added a sizeV option, integrated some identical operations
    to a separate function, and updated the CGS for horizontal and vertical
    respectively.

    The following command is on how to apply sizeV option :

    ffmpeg -init_hw_device vulkan -i input.264 -vf \
    hwupload,gblur_vulkan=size=127:sigma=20:sizeV=3:sigmaV=0.5,hwdownload,format=yuv420p \
    - y out.264

    Signed-off-by : Wu Jianhua <jianhua.wu@intel.com>

    • [DH] libavfilter/vf_gblur_vulkan.c