Recherche avancée

Médias (91)

Autres articles (83)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (7753)

  • avcodec/vvc : Remove NOP condition check in alf_filter_luma

    16 juillet 2024, par Zhao Zhili
    avcodec/vvc : Remove NOP condition check in alf_filter_luma
    

    If (y + i == vb_above) or (y + i == vb_below), the if body has no
    operation.

    • [DH] libavcodec/vvc/filter_template.c
  • 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.

  • Creating 3D animated map video

    2 mars 2024, par Bob Stone

    https://docs.mapbox.com/mapbox-gl-js/example/query-terrain-elevation/

    


    I did the same animation in the link using react native. Now I want to export this to a video.

    


    I want user to click a button then everything to be done at backend. For example, send post request to
/api/createMapVideo and request body contains the coordinates of MarkerViews, polyLines etc... and use theese data to create animated map video then store it on cloud and after doing all of that send the url of video in the cloud as response. Like relive app's 3d videos.

    


    How can I achieve this functionality ? I want to create animated map video on backend. Or are there better solutions ?