Recherche avancée

Médias (91)

Autres articles (97)

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

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

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

  • include a string variable that contains spaces into the 'subprocess.run()' [duplicate]

    9 juillet 2022, par zayn

    I'm trying to combine a video and it's audio into one file using ffmpeg using subprocess in python and I want to do something like this.

    


    name = 'spider man.mp4'

subprocess.run("ffmpeg -i " + 'temp\\vid.mp4' + " -i "+ 'temp\\aud.mp4' + " -c copy " + path+'\\'+name)



    


    "name" is the name concatenated with the extension of the resulting file but as you see, "name" contains spaces so when I pass it to the subprocess it takes the first word only which is (spider), so he don't find the extension of the resulting file and it give this error

    


    Unable to find a suitable output format for 'C:\Users\Zain\Downloads\spider'
C:\Users\Zain\Downloads\spider: Invalid argument



    


  • ffmpeg inside chrome extansion

    16 août 2021, par Denis Dombrovski

    hello I am trying to use the ffmpegwasm/ffmpeg.wasm library inside chrome extension
the library is loaded inside react component that is located inside an iframe

    


    the problem is when I try to load I got an error that I cannot download the core files enter image description here

    


    I tried to use the example library for chrome extension but also got an error "Uncaught (in promise) ReferenceError : SharedArrayBuffer is not defined error. "

    


    the files are web_accessible_resources inside the manifest

    


    I am using manifest version 3

    


  • Convert video in background

    27 novembre 2016, par RoiEX

    I found this question which is the same question I have, but with the small but important difference, that I’m using Windows so cronjobs are no thing.
    I basically want to convert a video in PHP, but don’t want the PHP script to hang up until the conversion is finished and instead return immediately.

    My current code :

    if ($videoext !== "mp4") {
       exec ( "./ffmpeg.exe -i " . $inputFile. " " . $outputFile/*without extension*/ . ".mp4" );//convert to useable format
       if (! in_array ( $videoext, $GLOBALS ['fileextensions'] )) {//Unsupported extension
           unlink ( $inputFile);//delete if not useful
       }
    }

    I’m using PHP7 with XAMPP for windows
    Any help is appreciated

    EDIT : I know that pthreads exist, but I’m not sure if they do what I’d expect them to do and too stupid to get them working on my XAMPP installation