Recherche avancée

Médias (0)

Mot : - Tags -/serveur

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

Autres articles (66)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Gstreamer : how to achieve the same effect as ffmpeg filter tmix

    2 février, par dudengke

    The ffmpeg command can smooth video :

    


    ffmpeg -i 1.h265 -vf "tmix=frames=3:weights=1 1 1" 2.h265


    


    Now i want to use gstreamer to smooth but I can't find the avfilter in gst-libav

    


    gst-launch-1.0 filesrc location=1.h265 ! decodebin ! videoconvert ! avfilter filter="tmix=frames=3:weights=1 1 1" ! videoconvert ! gstsink


    


    My question : Is there another way gstreamer can achieve the same effect as "tmix" in ffmpeg ?
I tried chatGPT, but the effect was not.

    


    gst-launch-1.0 filesrc location=1.h265 ! h265parse ! avdec_h265 ! videoconvert ! tee name=t \
t. ! queue ! identity single-segment=true ! videomixer name=mix sink_0::alpha=0.33 \
t. ! queue ! identity single-segment=true ! mix.sink_1 \
t. ! queue ! identity single-segment=true ! mix.sink_2 \
mix. ! gtksink


    


  • Resolving rtmp stream url from Adobe Flash container

    14 avril 2013, par Mustafe

    How can a rtmp stream url be retrieved completely with its playpath and be played with ffplay/avconv from a flash plugin. In embedded flash code below rtmp address exits (rtmp ://live.atv.com.tr/atv) , however it does not work with avplay since it needs playpath.

    /i.tmgrup.com.tr/p/flowplayer.controls.swf"},"influxis":{"url":"http://i.tmgrup.com.tr/p/flowplayer.rtmp.swf","netConnectionUrl":"rtmp://live.atv.com.tr/atv"},"ova":{"url":"http://i.tmgrup.com.tr/p/ova.swf","autoPlay":true,"overlays":{"regions":[{"id":"Reklam","verticalAlign":"bottom","horizontalAlign":"right","backgroundC...0,"style":".smalltext { font-style: italic; font-size:10; }"}]},"ads":{"notice":{"show":true,"region":"my-ad-notice","message":"<p class="\&quot;smalltext\&quot;" align="\&quot;right\&quot;"> Kalan süre : _countdown_ saniye.</p>"},"schedule":[{"zone":"5","position":"pre-roll","server":{"type":"direct","apiAddress":"http%3a%2f%2fad.reklamport.com%2frpgetad.ashx%3ftt%3dt_atv_canli_yayin_preroll_800x700%26vast%3d2"}}]}}},"playerId":"live","playlist":[{"eventCategory":"Canli Yayin","url":"atv3","live":true,"provider":"influxis"}]}" name="flashvars">

    Problem Solved : Using wireshark (network analyzer) is much more effective to retrieve paramaters like rtmp url, playpath...
    Edit2 : Some urls are also embedded in scripts files rather than directly in flash object, this variables are used in flash object above, later.

  • How to use ffmpeg.wasm in Firefox without getting the SharedArrayBuffer ?

    28 décembre 2020, par Pedro Henrique

    I'm trying to load ffmpeg.wasm in a react app to do a small video converter project. The code is working fine on chrome, but in firefox dev edition (83.0b) I catch the following error :

    &#xA;

    &#xA;

    ReferenceError : SharedArrayBuffer is not defined

    &#xA;

    &#xA;

    Here's the part of the component where the error is catched (the variable ready is never becomes true) :

    &#xA;

    import React, { useState, useEffect } from &#x27;react&#x27;&#xA;import styles from &#x27;./App.module.css&#x27;&#xA;import { createFFmpeg, fetchFile } from &#x27;@ffmpeg/ffmpeg&#x27;&#xA;const ffmpeg = createFFmpeg({ log: true })&#xA;&#xA;function App() {&#xA;  // load state&#xA;  const [ready, setReady] = useState(false)&#xA;  // files state&#xA;  const [video, setVideo] = useState(&#x27;&#x27;)&#xA;  const [gif, setGif]   = useState()&#xA;  // UI state&#xA;  const [dragOver, setDragOver ] = useState(false)&#xA;  const [nOfEnters, setNOfEnters] = useState(0)&#xA;&#xA;  const load = async () => {&#xA;    try {&#xA;      await ffmpeg.load()&#xA;      setReady(true)&#xA;    } catch(error) {&#xA;      console.log(error)&#xA;    }&#xA;  }&#xA;&#xA;  useEffect(() => {&#xA;    load()&#xA;  }, [])&#xA;

    &#xA;

    Thanks in advance, let me know if I should've provided any more detail.

    &#xA;