Recherche avancée

Médias (91)

Autres articles (35)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (5339)

  • Creating buttons with Imagick

    9 juin 2010, par Mikko Koppanen — Imagick, PHP stuff

    A fellow called kakapo asked me to create a button with Imagick. He had an image of the button and a Photoshop tutorial but unfortunately the tutorial was in Chinese. My Chinese is a bit rusty so it will take a little longer to create that specific button ;)

    The button in this example is created after this tutorial http://xeonfx.com/tutorials/easy-button-tutorial/ (yes, I googled “easy button tutorial”). The code and the button it creates are both very simple but the effect looks really nice.

    Here we go with the code :

    1. < ?php
    2.  
    3. /* Create a new Imagick object */
    4. $im = new Imagick() ;
    5.  
    6. /* Create empty canvas */
    7. $im->newImage( 200, 200, "white", "png" ) ;
    8.  
    9. /* Create the object used to draw */
    10. $draw = new ImagickDraw() ;
    11.  
    12. /* Set the button color.
    13.   Changing this value changes the color of the button */
    14. $draw->setFillColor( "#4096EE" ) ;
    15.  
    16. /* Create the outer circle */
    17. $draw->circle( 50, 50, 70, 70 ) ;
    18.  
    19. /* Create the smaller circle on the button */
    20. $draw->setFillColor( "white" ) ;
    21.  
    22. /* Semi-opaque fill */
    23. $draw->setFillAlpha( 0.2 ) ;
    24.  
    25. /* Draw the circle */
    26. $draw->circle( 50, 50, 68, 68 ) ;
    27.  
    28. /* Set the font */
    29. $draw->setFont( "./test1.ttf" ) ;
    30.  
    31. /* This is the alpha value used to annotate */
    32. $draw->setFillAlpha( 0.17 ) ;
    33.  
    34. /* Draw a curve on the button with 17% opaque fill */
    35. $draw->bezier( array(
    36.           array( "x" => 10 , "y" => 25 ),
    37.           array( "x" => 39, "y" => 49 ),
    38.           array( "x" => 60, "y" => 55 ),
    39.           array( "x" => 75, "y" => 70 ),
    40.           array( "x" => 100, "y" => 70 ),
    41.           array( "x" => 100, "y" => 10 ),
    42.          ) ) ;
    43.  
    44. /* Render all pending operations on the image */       
    45. $im->drawImage( $draw ) ;
    46.  
    47. /* Set fill to fully opaque */
    48. $draw->setFillAlpha( 1 ) ;
    49.  
    50. /* Set the font size to 30 */
    51. $draw->setFontSize( 30 ) ;
    52.  
    53. /* The text on the */
    54. $draw->setFillColor( "white" ) ;
    55.  
    56. /* Annotate the text */
    57. $im->annotateImage( $draw, 38, 55, 0, "go" ) ;
    58.  
    59. /* Trim extra area out of the image */
    60. $im->trimImage( 0 ) ;
    61.  
    62. /* Output the image */
    63. header( "Content-Type : image/png" ) ;
    64. echo $im ;
    65.  
    66.  ?>

    And here is a few buttons I created by changing the fill color value :

    red

    green

    blue

  • Typesetting

    9 juin 2010, par Mikko Koppanen — Imagick, PHP stuff

    Ever had the situation where you have a piece of string which you need to overlay on an image ? Maybe a situation where the area reserved for the string is known in pixels but you need to know the font size to fill most of the area ? Think no more !

    Here is a small example of how to fit a certain piece of a string on to an area of which you know the width and the height or only the width. The magic happens through the ImageMagick CAPTION : format. You can see from the example images how the parameters actually affect the image.

    1. < ?php
    2.  
    3. /* How wide is our image */
    4. $image_width = 200 ;
    5.  
    6. /* Give zero for autocalculating the height */
    7. $image_height = 200 ;
    8.  
    9. /* Specify the text */
    10. $text = "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
    11.     Mauris lectus mi, mattis non, euismod vel, sagittis nec, ipsum." ;
    12.  
    13. /* Instanciate imagick */
    14. $im = new Imagick() ;
    15.  
    16. /* Create new image using caption : pseudo format */
    17. $im->newPseudoImage( $image_width, $image_height, "caption :" . $text ) ;
    18.  
    19. /* Put 1px border around the image */
    20. $im->borderImage( ’black’, 1, 1 ) ;
    21.  
    22. /* PNG format */
    23. $im->setImageFormat( "png")  ;
    24.  
    25. /* Output */
    26. header( "Content-Type : image/png" ) ;
    27. echo $im ;
    28.  
    29.  ?>

    Here is image with width 100 and height 0 :

    width_100_height_0.png

    Width 100 Height 50 :

    width_100_height_50.png

    Width 200 Height 200 (as you can see the font size is now larger) :

    width_200_height_200.png

  • How to seek to a position in a song Discord.js ?

    4 décembre 2020, par hrishit biswas

    I am facing some difficulty with seeking to a specified timestamp in the current song. I have separate files for all my commands. I want to create a seek.js file which takes input a specified time and then passes it to the play.js file(it plays the current song in the queue) but the problem is I cant seem to find a way to how do this.

    &#xA;

    This is my play command.

    &#xA;

    const { Collector } = require("discord.js");&#xA;const ytdlDiscord = require("ytdl-core-discord");&#xA;//const play = require("../commands/play");&#xA;module.exports = {&#xA;    async play(song, message){&#xA;        const queue = message.client.queue.get(message.guild.id);&#xA;&#xA;        if(!song){&#xA;            setTimeout(function(){&#xA;                if(!queue.connection.dispatcher &amp;&amp; message.guild.me.voice.channel){&#xA;                    queue.channel.leave();&#xA;                    queue.textChannel.send(`**Cadenza** left successfully`).catch(console.error);&#xA;                }&#xA;                else return;&#xA;            },120000);&#xA;            &#xA;            message.client.queue.delete(message.guild.id);&#xA;            return queue.textChannel.send(`**Music Queue Ended**`);&#xA;        }&#xA;        let stream = await ytdlDiscord(song.url,{filter: &#x27;audioonly&#x27;, quality: &#x27;highestaudio&#x27;, highWaterMark: 1&lt;&lt;25});&#xA;        let streamType = song.url.includes("youtube.com") ? "opus" : "ogg/opus";&#xA;        queue.connection.on("disconnect", () => message.client.queue.delete(message.guild.id));&#xA;        const dispatcher = queue.connection&#xA;         .play(stream, {type: streamType, highWaterMark: 1})&#xA;         .on("finish", () => {&#xA;             if(queue.loop){&#xA;                 let last = queue.songs.shift();&#xA;                 queue.songs.push(last);&#xA;                 module.exports.play(queue.songs[0], message);&#xA;             }else{&#xA;             queue.songs.shift();&#xA;             module.exports.play(queue.songs[0], message);&#xA;             }&#xA;&#xA;         })&#xA;         .on("error", (err) => {&#xA;             console.error(err);&#xA;             queue.songs.shift();&#xA;             module.exports.play(queue.songs[0], message);&#xA;         });&#xA;         dispatcher.setVolumeLogarithmic(queue.volume / 100);&#xA;        queue.textChannel.send(`Started Playing **${song.title}**`);&#xA;    }&#xA;};&#xA;

    &#xA;

    seek command

    &#xA;

    const { play } = require("../include/play");&#xA;function timeConvert(str){&#xA;    const t = str.split(&#x27;:&#x27;);&#xA;    let s = 0, m = 1;&#xA;    while(t.length > 0){&#xA;        s = &#x2B;m * parseInt(t.pop(),10);&#xA;        m = m * 60;&#xA;    }&#xA;    return s;&#xA;}&#xA;module.exports = {&#xA;    name: &#x27;seek&#x27;,&#xA;    description: &#x27;Seeks to a certain point in the current track.&#x27;,&#xA;    execute(message,args){&#xA;        const queue = message.client.queue.get(message.guild.id);&#xA;        if(!queue) return message.channel.send("There is no song playing.").catch(console.error);&#xA;        queue.playing = true;&#xA;        let time = timeConvert(args[0]);&#xA;        if( time > queue.songs[0].duration)&#xA;          return message.channel.send(`**Input a valid time**`);&#xA;        else{&#xA;            let time = timeConvert(args[0]) * 1000;&#xA;            #main code here&#xA;        }&#xA;    }&#xA;}&#xA;

    &#xA;

    How can I pass the time variable to play() so that the current song seeks to that amount ?

    &#xA;