Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (84)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (12331)

  • avcodec/amrwbdec : Mark default switch as unreachable

    3 octobre 2021, par Andreas Rheinhardt
    avcodec/amrwbdec : Mark default switch as unreachable
    

    Alternative fix for Coverity issue #1473499
    instead of a3bb269db92601e2dc0e99352468d02f7b26c7c2.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/amrwbdec.c
  • how to copy mp4 file generated by FFMPEG spawn using another FFMPEG spawn

    2 mai 2021, par Abadi

    I am using the following code that records screen on Linux and the output is an mp4 file.

    &#xA;

    const transcodeStreamToOutput = spawn(&#x27;ffmpeg&#x27;,[&#xA;&#x27;-hide_banner&#x27;,&#xA;&#x27;-loglevel&#x27;, &#x27;error&#x27;,&#xA;// disable interaction via stdin&#xA;&#x27;-nostdin&#x27;,&#xA;// screen image size&#xA;&#x27;-s&#x27;, `${BROWSER_SCREEN_WIDTH}x${BROWSER_SCREEN_HEIGHT}`,&#xA;// video frame rate&#xA;&#x27;-r&#x27;, `${VIDEO_FRAMERATE}`,&#xA;// hides the mouse cursor from the resulting video&#xA;&#x27;-draw_mouse&#x27;, &#x27;0&#x27;,&#xA;// grab the x11 display as video input&#xA;&#x27;-f&#x27;, &#x27;x11grab&#x27;,&#xA;    &#x27;-i&#x27;, `${DISPLAY}`,&#xA;// grab pulse as audio input&#xA;&#x27;-f&#x27;, &#x27;pulse&#x27;,&#xA;    &#x27;-ac&#x27;, &#x27;2&#x27;,&#xA;    &#x27;-i&#x27;, &#x27;default&#x27;,&#xA;// codec video with libx264&#xA;&#x27;-c:v&#x27;, &#x27;libx264&#x27;,&#xA;    &#x27;-pix_fmt&#x27;, &#x27;yuv420p&#x27;,&#xA;    &#x27;-profile:v&#x27;, &#x27;main&#x27;,&#xA;    &#x27;-preset&#x27;, &#x27;veryfast&#x27;,&#xA;    &#x27;-x264opts&#x27;, &#x27;nal-hrd=cbr:no-scenecut&#x27;,&#xA;    &#x27;-minrate&#x27;, `${VIDEO_BITRATE}`,&#xA;    &#x27;-maxrate&#x27;, `${VIDEO_BITRATE}`,&#xA;    &#x27;-g&#x27;, `${VIDEO_GOP}`,&#xA;// apply a fixed delay to the audio stream in order to synchronize it with the video stream&#xA;&#x27;-filter_complex&#x27;, &#x27;adelay=delays=1000|1000&#x27;,&#xA;// codec audio with aac&#xA;&#x27;-c:a&#x27;, &#x27;aac&#x27;,&#xA;    &#x27;-b:a&#x27;, `${AUDIO_BITRATE}`,&#xA;    &#x27;-ac&#x27;, `${AUDIO_CHANNELS}`,&#xA;    &#x27;-ar&#x27;, `${AUDIO_SAMPLERATE}`,&#xA;// adjust fragmentation to prevent seeking(resolve issue: muxer does not support non seekable output)&#xA;&#x27;-movflags&#x27;, &#x27;frag_keyframe&#x2B;empty_moov&#x27;,&#xA;// set output format to mp4 and output file to stdout&#xA;&#x27;-f&#x27;, &#x27;mp4&#x27;, &#x27;-&#x27;&#xA;]&#xA;

    &#xA;

    ) ;

    &#xA;

    I need to run ffmpeg -i captured.mp4 -c copy new.mp4 using another spawn process on the output.&#xA;I tried the following :

    &#xA;

    const newStdOut =  spawn(&#x27;ffmpeg&#x27;,[&#xA;&#xA;    &#x27;-i&#x27;, `${transcodeStreamToOutput.stdout}`, &#xA;    &#x27;-codec:v&#x27;, &#x27;copy&#x27;, &#xA;    &#x27;-codec:a&#x27;, &#x27;copy&#x27;, &#xA;    &#x27;-f&#x27;, &#x27;mp4&#x27;, &#x27;-&#x27;&#xA;    ]&#xA;);&#xA;

    &#xA;

    But it is not working. I would appreciate any help.

    &#xA;

  • slowmotion and fastmotion using FFmpeg takes a long time

    22 novembre 2018, par Bhavik Nathani

    FFmpeg takes a long time in Video Processing Like Slowmotion, Fastmotion, Reverse Video, Compress Video e.t.c.

    Is there any solution to reduce the time taken in video processing or any alternative library for Video Processing like FFmpeg ? But it should be faster than FFmpeg.