Recherche avancée

Médias (1)

Mot : - Tags -/embed

Autres articles (61)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • Merge branch ’master’ of https://github.com/tim-evans/SoundManager2 into tim-evans-master

    25 octobre 2011, par Scott Schiller

    m script/soundmanager2-nodebug.js m script/soundmanager2.js Merge branch ’master’ of https://github.com/tim-evans/SoundManager2 into tim-evans-master

  • Revision 06f3e51da6 : vpx_scale : sync from master Update vpx_scale from current code in master, run s

    2 novembre 2012, par John Koleszar

    Changed Paths : Modify /vp9/common/alloccommon.c Modify /vp9/common/asm_com_offsets.c Modify /vp9/common/postproc.c Modify /vp9/common/reconinter.c Modify /vp9/common/rtcd_defs.sh Modify /vp9/decoder/decodframe.c Modify /vp9/decoder/onyxd_if.c (...)

  • problem with executing flutterFFmpeg command

    28 février 2021, par Sadiq Samaila

    the code below is for creating a robot voice with flutterFFmpeg

    


    so here is the code I ran

    


                          String commandToExecute =
                      "-i $aud -filter_complex 'afftfilt=real='hypot(re,im)*sin(0)':imag='hypot(re,im)*cos(0)':win_size=512:overlap=0.75' " +
                          outputPath;
   
                  _flutterFFmpeg.execute(commandToExecute).then((rc) => print(
                      "FFmpeg process exited with rc $rc $appDocumentDir"));


    


    and I got this error

    


    E/mobile-ffmpeg( 5493): [AVFilterGraph @ 0x7ce619159800] No such filter: 'im)*sin(0):imag'
E/mobile-ffmpeg( 5493): Error initializing complex filters.
E/mobile-ffmpeg( 5493): Invalid argument
D/flutter-ffmpeg( 5493): FFmpeg exited with rc: 1


    


    I tried changing all single quote(') to double quote(") in the command but it did not work.