Recherche avancée

Médias (91)

Autres articles (13)

  • 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" ;

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (3084)

  • lavu/libm : add exp10 support

    22 décembre 2015, par Ganesh Ajjanagadde
    lavu/libm : add exp10 support
    

    exp10 is a function available in GNU libm. Looks like no other common
    libm has it. This adds support for it to FFmpeg.

    There are essentially 2 ways of handling the fallback :
    1. Using pow(10, x)
    2. Using exp2(M_LOG2_10 * x).

    First one represents a Pareto improvement, with no speed or accuracy
    regression anywhere, but speed improvement limited to GNU libm.

    Second one represents a slight accuracy loss (relative error 1e-13)
    for non GNU libm. Speedup of > 2x is obtained on non GNU libm platforms,
     30% on GNU libm. These are "average case numbers", another benefit is
    the lack of triggering of the well-known terrible worst case paths
    through pow.

    Based on reviews, second one chosen. Comment added accordingly.

    Reviewed-by : Hendrik Leppkes <h.leppkes@gmail.com>
    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Reviewed-by : Ronald S. Bultje <rsbultje@gmail.com>
    Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>

    • [DH] configure
    • [DH] libavutil/libm.h
  • ffmpwg failed with code 1 at ChildProcess

    13 janvier 2021, par awabs

    I am trying to add a watermark over the a video in firebase storage using firebase functions and ffmpeg,&#xA;but no matter what I try it always exit the same error.

    &#xA;

     return spawn(&#x27;ffmpeg&#x27;, [&#x27;-i&#x27;, tmpFilePath, &#x27;-vf&#x27;,`drawtext="text=&#x27;hello World&#x27;`, tmpFilePath]);&#xA;

    &#xA;

    And I tried this as well :

    &#xA;

            return spawn(&#x27;ffmpeg&#x27;, [&#x27;-i&#x27;, tmpFilePath, &#x27;-i&#x27;, tmpLogoPath, &#x27;-filter_complex&#x27;, &#x27;"overlay=10:10"&#x27;, tmpFilePath]);&#xA;

    &#xA;

    console log :

    &#xA;

    ChildProcessError: `ffmpeg -i /tmp/anything -vf drawtext="text=&#x27;Stack Overflow&#x27; /tmp/anything` failed with code 1&#xA;at ChildProcess.<anonymous> (/workspace/node_modules/child-process-promise/lib/index.js:132:23)&#xA;at ChildProcess.emit (events.js:315:20)&#xA;at ChildProcess.EventEmitter.emit (domain.js:506:15)&#xA;at maybeClose (internal/child_process.js:1021:16)&#xA;at Socket.<anonymous> (internal/child_process.js:443:11)&#xA;at Socket.emit (events.js:315:20)&#xA;at Socket.EventEmitter.emit (domain.js:506:15)&#xA;at Pipe.<anonymous> (net.js:674:12)&#xA;at Pipe.callbackTrampoline (internal/async_hooks.js:120:14)&#xA;</anonymous></anonymous></anonymous>

    &#xA;

  • Not able to configure FFserver for RTSP

    2 novembre 2015, par Sujith

    I am kind of new to the streaming world... so, please forgive me if I ask kind of dumb question.

    I am trying to stream my pre-recorded file over RTSP through FFserver.

    My config file is :

    RTSPPort 8544
    <feed>
       File /home/xyz/tmp/feed2.ffm
       FileMaxSize 200K
       ACL allow 127.0.0.1
    </feed>

    <stream>
       Feed feed2.ffm
       Format rtsp
       VideoFrameRate 15
       VideoSize 352x240
       VideoBitRate 256
       VideoBufferSize 40
       VideoGopSize 30
       AudioBitRate 64
       StartSendOnKey
    </stream>

    After starting the server, it give the below log :

    $ ./ffserver -f doc/ffserver.conf
    ffserver version 0.11.1 Copyright (c) 2000-2012 the FFmpeg developers
    built on Sep 17 2012 19:46:38 with gcc 4.1.2 20080704 (Red Hat 4.1.2-52)
    configuration: --enable-gpl --enable-libmp3lame --enable-libtheora --enable-libvo-aacenc
    -enable-libvorbis --enable-libvpx --enable-libx264 --enable-version3
    libavutil 51. 54.100 / 51. 54.100
    libavcodec 54. 23.100 / 54. 23.100
    libavformat 54. 6.100 / 54. 6.100
    libavdevice 54. 0.100 / 54. 0.100
    libavfilter 2. 77.100 / 2. 77.100
    libswscale 2. 1.100 / 2. 1.100
    libswresample 0. 15.100 / 0. 15.100
    libpostproc 52. 0.100 / 52. 0.100
    Wed Sep 19 17:03:32 2012 FFserver started.

    And now from my VLC client I am trying to type the URL : rtsp ://xxx.xxx.xxx.xxx:8554/test.sdp

    But, what happens is that, there is no response on the ffserver.

    I have no clue what might be the problem. Thanks in advance.