Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (38)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (8271)

  • Anomalie #4756 (Nouveau) : Régressions liées aux évolutions des styles du privé

    1er mai 2021

    Merci de rapporter ici les régressions liées aux évolutions des styles du privé.
    Pour simplifier je suggère de tout regrouper ici, même les choses concernant les plugins-dist.

    Cela concerne principalement les boutons, les formulaires, les boîtes, le bandeau et les choses indirectement liées.
    Je m’attaquerai à tout cela après la PR sur les listes d’objets.

    Formulaires

    • [ ] Formulaire de traduction : tout est décalé.
    • [ ] Formulaire de dates : il reste des espacements à corriger.
    • [ ] Formulaire instituer : la couleur de fond doit coller aux bords de la boîte.
    • [ ] Formulaire editer_liens : problèmes d’espacements et de lisibilité en général.
    • [ ] Formulaire logo + bigup : le bouton de validation étant caché, le conteneur .boutons visible fait bizarre.

    Boutons

    • [ ] Unifier les boutons de suppression dans les listes d’objets liés (mots-clés, etc.)
    • [ ] Boutons formulaire traitements des images : ajuster couleurs, survol notamment.

    Boîtes

    • [ ] Boîte auteur : la couleur de fond du champ biographie doit coller aux bords.
    • [ ] Boîtes (toutes) : dans une .fiche_objet, régler la marge interne quand il n’y a pas de titre (visible sur la boîte « article proposé pour publication » par exemple).
    • [ ] Boîtes erreurs et cie : aligner le picto sur la 1ère ligne de texte quand il n’y a pas de titre.

    Alertes

    • [ ] Mieux aligner le bouton de fermeture
  • ffmpeg x11grab inputting improperly

    20 décembre 2017, par Not a superuser

    I have the stock ffmpeg install from the xbps repository. I’ve used it before, but am on a new system.

    Running "ffmpeg x11grab -video_size 1280x800 -framerate 60 -i $DISPLAY output.mkv" yeilds no errors, but when I watch the video it is a mess switching between workspaces and with only partly rendered programs.

    Taking other inputs such as webcam work fine, and different encoding methods don’t change anything (though webm flat out doesn’t work, but that’s not a problem for me).

    I’ve tried what’s here : https://wiki.archlinux.org/index.php/FFmpeg

    Only other thing to note is that I use i3 as a dm, which shouldn’t be a problem, but figured I’d state it just in case.

    EDIT :
    I was using compton for composite, and that was where my issue lied...
    https://github.com/chjj/compton/issues/381

    Thanks !

  • Change audio speed using ffmpeg node js

    26 juillet 2022, par Getwrong

    how do i change the speed of the song output using this function :

    



    function addAudio()
{
      console.log("adding audio...");

      ffmpeg()
      .videoCodec('libx264')
      .format('mp4')
      .outputFormat('mp4')
      .input(song)
      .input(video)
      .output(output1)
      .on('end', () => {                    
          resolve(output1);
      }).on('error', (_err) => {
          reject(_err);
      }).run();
}


    



    https://trac.ffmpeg.org/wiki/How%20to%20speed%20up%20/%20slow%20down%20a%20video

    



    this shows command line input but not sure how to use it in js function ?