Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (26)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (8252)

  • Looking for a Sales Development Representative (Jobs at Piwik)

    20 mai 2015, par Piwik Core Team — Jobs

    This blog post is a job offer at Piwik PRO for a Sales Development Representative. Please share this job ad if you know anyone who may be interested.

    Job description

    As a sales development rep your job will be to work with our sales team to identify and nurture sales opportunities. You will be one of the initial building blocks of our US operation, especially as we begin to scale it, so there will be plenty of opportunities for advancement within the company.

    Responsibilities

    • Generate new sales opportunities
    • Help to develop and improve sales strategies
    • Set up discussions with senior executives and evaluate their business needs
    • Manage and nurture a pipeline of prospects until a given stage
    • Use marketing & sales CRM tools

    Requirements

    • Desire to learn and succeed in sales
    • 1+ years of related experience
    • Advanced research skills
    • Ability to write professional emails
    • Native English proficiency with excellent verbal communication skills
    • Passion for technology

    Compensation

    Salary (full-time) + performance-based incentives

    Location

    Remote

    About Piwik PRO

    At Piwik and Piwik PRO we develop the leading open source web analytics platform, used by over 1.1M websites worldwide and is currently ranked the 7th most used web analytics tool in the world. Our vision is to build the best open alternative to Google Universal Analytics.

    The Piwik platform collects, stores and processes a lot of information : hundreds of millions of data points each month. We create intuitive, simple and beautiful reports that delight our users.

    Apply online

    To apply for this position, please Apply online here. We look forward to receiving your applications !

  • Looking for a Sales Development Representative (Jobs at Piwik)

    20 mai 2015, par Piwik Core Team — Jobs

    This blog post is a job offer at Piwik PRO for a Sales Development Representative. Please share this job ad if you know anyone who may be interested.

    Job description

    As a sales development rep your job will be to work with our sales team to identify and nurture sales opportunities. You will be one of the initial building blocks of our US operation, especially as we begin to scale it, so there will be plenty of opportunities for advancement within the company.

    Responsibilities

    • Generate new sales opportunities
    • Help to develop and improve sales strategies
    • Set up discussions with senior executives and evaluate their business needs
    • Manage and nurture a pipeline of prospects until a given stage
    • Use marketing & sales CRM tools

    Requirements

    • Desire to learn and succeed in sales
    • 1+ years of related experience
    • Advanced research skills
    • Ability to write professional emails
    • Native English proficiency with excellent verbal communication skills
    • Passion for technology

    Compensation

    Salary (full-time) + performance-based incentives

    Location

    Remote

    About Piwik PRO

    At Piwik and Piwik PRO we develop the leading open source web analytics platform, used by over 1.1M websites worldwide and is currently ranked the 7th most used web analytics tool in the world. Our vision is to build the best open alternative to Google Universal Analytics.

    The Piwik platform collects, stores and processes a lot of information : hundreds of millions of data points each month. We create intuitive, simple and beautiful reports that delight our users.

    Apply online

    To apply for this position, please Apply online here. We look forward to receiving your applications !

  • My own music bot randomly stops when playing a song, no errors, just like the song has ended

    18 avril 2019, par Stasio

    I made a discord music bot but there is one problem :
    When i play something it works perfectly for a moment but then sometimes music ends in the middle of the song just like the song has ended.
    When there are some songs in queue and this bug happens the bot starts playing another song from the queue. Im using ffmpeg, ytdl-core, simple-youtube-api,
    opusscript. What do u guys think about it ? I don’t think that this problem is caused by my code cuz this error happens randomly, sometimes 3 songs in a row are played normaly and sometimes it crashes in the middle of the 1 song, so he starts playing the next song in queue.

    const arg = msg.content.split(' ');
    const searchString = arg.slice(1).join(' ');
    const url = arg[1] ? arg[1].replace(/<(.+)>/g, '$1') : '';
    const serverQueue = queue.get(msg.guild.id);

    let command = msg.content.toLowerCase().split(' ')[0];
    command = command.slice(PREFIX.length)

    if (command === 'play' || command === 'p') {
    msg.delete()
    const voiceChannel = msg.member.voiceChannel;
    let emoji = msg.guild.emojis.find(x => x.name === "2Head")
       if (!voiceChannel) return msg.channel.send('Nie jesteś nawet na kanale głosowym zjebie ' + emoji);
       const permissions = voiceChannel.permissionsFor(msg.client.user);
       if (!permissions.has('CONNECT')) {
           return msg.channel.send('Nie mam permisji zeby sie polaczyc ;/');
       }
       if (!permissions.has('SPEAK')) {
           return msg.channel.send('Nie moge mowic odmutujcie mnie : )');
       }

       if (url.match(/^https?:\/\/(www.youtube.com|youtube.com)\/playlist(.*)$/)) {
           const playlist = await youtube.getPlaylist(url);
           const videos = await playlist.getVideos();
           for (const video of Object.values(videos)) {
               const video2 = await youtube.getVideoByID(video.id);
               await handleVideo(video2, msg, voiceChannel, true);
           }
           return msg.channel.send(`✅ Playlist: **${playlist.title}** has been added to the queue!`);
       } else {
           try {
               var video = await youtube.getVideo(url);
           } catch (error) {
               try {
                   var videos = await youtube.searchVideos(searchString, 1);
                   var video = await youtube.getVideoByID(videos[0].id);
               } catch (err) {
         console.error(err);
         let emoji = msg.guild.emojis.find(x => x.name === "autism")
                   return msg.channel.send('Nie ma takiego filmu na całym youtubie ' + emoji );
               }
           }
           return handleVideo(video, msg, voiceChannel);
       }
    }