Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (96)

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

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (7851)

  • Creating a animated transiton effect slide show in FFmpeg

    19 janvier 2016, par ajay

    I am creating a slide show in FFMPEg with Images and one audio.
    The slide show created and playaing as per following cmd Command.

    ffmpeg   -f image2 -framerate 1 -loop 1 -i image%d.png -i audio.wav -s 1200x750 -t 00:00:30   foo.avi

    I need the Transition effect in the slide show so please help us.

  • Permission denied when trying to save a file with ffmpeg

    20 mars 2023, par Hoff

    I'm sending an audio blob to my deno/oak server, and I want to encode it as mp3 using deno_ffmpeg but I'm getting a Permission denied (os error 13) error.

    


    With operations like Deno.rename(), I am able to save files just fine. Just not when calling ffmpeg.save().

    


    Here is the code in question :

    


    const body = await context.request.body({ type: 'form-data' })
const data = await body.value.read()
const audioFile = data.files[0]

const ffmpegClass = new ffmpeg({ input: audioFile.filename, ffmpegDir: '.' })
await ffmpegClass.save('./output.mp3')


    


    The last line triggers this error :

    


    PermissionDenied: Permission denied (os error 13)
    at opRun (internal:runtime/js/40_process.js:33:14)
    at Object.run (internal:runtime/js/40_process.js:119:15)
    at FfmpegClass.save (https://deno.land/x/deno_ffmpeg@v3.1.0/src/ffmpegClass.ts:506:26)


    


    This happens despite running the server with --allow-run and --allow-write or even --allow-all

    


    Persission on the root directory are drwxrw-rw- (chmod 766).

    


    I'm out of ideas as to what is causing this permissions error, any ideas would be highly appreciated !

    


  • Save live video stream to a video file

    29 juin 2023, par VISHAL DAGA

    Trying to save live streaming video data into a (any) playable video file.
When I log the data I see the following (Put in comment in below code) :-

    


    axios.get(`http://192.168.1.33`, {&#xA;  responseType: &#x27;stream&#x27;,&#xA;}).then((response)=>{&#xA;  const stream = response.data&#xA;  stream.on(&#x27;data&#x27;, data => {&#xA;    console.log(data);  // <buffer 4c="4c" 28="28" a1="a1" 0c="0c" 0d="0d" 14="14" 0e="0e" e1="e1" 8e="8e" eb="eb" 52="52" 48="48" d0="d0" c0="c0" 4a="4a" 68="68" 7b="7b" 0b="0b" c7="c7" 7c="7c" d2="d2" 55="55" 21="21" 0a="0a" a9="a9" 63="63" 12="12" 96="96" 9b="9b" 00="00" ed="ed" 49="49" 42="42" 1a="1a" 16="16" a4="a4" 1e="1e" 94="94" 50="50" 20="20" a3="a3" d8="d8" d5="d5" 1386="1386" more="more" bytes="bytes">&#xA;                       // <buffer 0d="0d" cb="cb" 4b="4b" f7="f7" 77="77" 36="36" c8="c8" 42="42" 9d="9d" bb="bb" b3="b3" d6="d6" a3="a3" 72="72" 24="24" ff="ff" 00="00" 9e="9e" 29="29" b8="b8" 35="35" a5="a5" 48="48" ad="ad" e2="e2" 11="11" a9="a9" ec="ec" 38="38" 1d="1d" e1="e1" 91="91" 93="93" 73="73" bf="bf" a6="a6" 96="96" 62="62" 26="26" 57="57" f4="f4" a4="a4" 4258="4258" more="more" bytes="bytes">&#xA;                      // ....&#xA;</buffer></buffer>

    &#xA;

    How can I save this data into a video file which can be played ? I am starting to read from live stream at a certain point in time and reading it for few seconds - ex. 5 seconds. I need to have a video of that 5 seconds.

    &#xA;

    Note, when I use the url : http://192.168.1.33, I can see the video on the browser.

    &#xA;