Recherche avancée

Médias (91)

Autres articles (55)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

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

  • MAINTAINERS : Add myself as maintainer for dxva2 and Windows/MSVC

    1er août 2015, par Hendrik Leppkes
    MAINTAINERS : Add myself as maintainer for dxva2 and Windows/MSVC
    
    • [DH] MAINTAINERS
  • How to pass encrypted command to ffmpeg from Windows 10 ?

    25 juillet 2019, par gaamaa

    While we pass commandline to ffmpeg and run it from Windows, others could see those commandline from taskmanager.
    Sometimes the url and password are secret which to be hidden from others.
    How to overcome this ?

    I don’t know ffmpeg coders thought about it and done something for this already.
    If I know C++ or relevant coding, I could add a custom decryption code block inside ffmpeg and use my encryption application to pass the encrypted command line.
    I don’t even know how to compile ffmpeg because its a nightmare even for professionals. (Why so complicated steps to simple compilation of an exe ?)

    Usual command line :

    ffmpeg -i MySource -codec:v h264_nvenc -s:v 1920x1080 -ac 2 -ar 48000 ... xyz ... -r 25 -f mpegts "udp://224.2.2.1:1234?pkt_size=1316"

    My expected commad line line :

    ffmpeg 8B8E108D96EBCA39415889F19E644D3EFA00D35941F383E28A5ED5  9D3A72CF8952C79AF2DA035949525C2D34ADDE5B9479217F5E739B0C515CE
    20A1AE16120E22616
  • What is wrong with this code ? Not working on Windows 10 / Ubuntu 14

    3 avril 2017, par Somename

    Trying to convert a .gif to .mp4 :

    var express = require('express');
    var bodyParser = require('body-parser');
    var app = express();
    var ffmpeg = require('fluent-ffmpeg');  

    var proc = new ffmpeg({ source: 'myfile.gif' })
     .withAspect('4:3')
     .withSize('640x480')
     .applyAutopadding(true, 'white')
     .saveToFile('myfile.avi', function(stdout, stderr) {
       console.log('file has been converted succesfully');
     });

    app.listen(3000, function() {  
       console.log("Server Running on 3000");
    });

    Getting the same error on Windows 10 and Ubuntu 14 : Error: Cannot find ffmpeg.

    What is wrong with the code ? Please help.