Recherche avancée

Médias (91)

Autres articles (58)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

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

  • TypeError : 'FFmpegOpusAudio' object is not subscriptable

    12 octobre 2022, par Virat Chauhan

    I am getting this error whenever I try to get the bot to play a song in vc :

    


    await ctx.send('Now playing ' + '**' + str(queues[ctx.message.guild.id]['title'][0]) + '**')
TypeError: 'FFmpegOpusAudio' object is not subscriptable


    


    Here is the relevant code :

    


      async def playSong(self, ctx, url):
    queues[ctx.message.guild.id]['title'] = []
    with youtube_dl.YoutubeDL(self.YDL_OPTIONS) as ydl:
      info = ydl.extract_info(url, download=False)
      if 'entries' in info:        # if no url is input
        url2 = info['entries'][0]['formats'][0]['url']
        queues[ctx.message.guild.id]['title'].append(info['entries'][0]['title'])
      elif 'formats' in info:      # if url is passed
        url2 = info['formats'][0]['url']
        queues[ctx.message.guild.id]['title'].append(info['title'])
      #print(queues[ctx.message.guild.id]['title'][0])
      stream = await discord.FFmpegOpusAudio.from_probe(url2, **self.FFMPEG_OPTIONS)
    return stream
  
  @commands.command(name='play', help="Plays any song", aliases=['p'])
  async def play(self, ctx, *, url):
    vc = ctx.guild.voice_client
    if not vc.is_playing():
      guild = ctx.message.guild
      
      queues[guild.id] = {}
      stream = await self.playSong(ctx, url)
      queues[guild.id] = stream
      vc.play(stream, after=lambda e: self.queueCheck(guild.id, vc))
      await ctx.send('Now playing ' + '**' + str(queues[ctx.message.guild.id]['title'][0]) + '**')


    


    I am aware that this can be solved with having two dictionaries but I wish to contain all data inside a single structure.

    


  • lavu/opencl : replace va_ext.h with standard name

    23 novembre 2018, par Ruiling Song
    lavu/opencl : replace va_ext.h with standard name
    

    Khronos OpenCL header (https://github.com/KhronosGroup/OpenCL-Headers)
    uses cl_va_api_media_sharing_intel.h. And Intel's official OpenCL driver
    for Intel GPU (https://github.com/intel/compute-runtime) was compiled
    against Khronos OpenCL header. So it's better to align with Khronos.

    Signed-off-by : Ruiling Song <ruiling.song@intel.com>

    • [DH] configure
    • [DH] libavutil/hwcontext_opencl.c
  • What should I do to handle audio&video in a radio automation software ?

    24 avril 2023, par TheDaChicken

    I am currently working on a program that can be deemed as a "radio automation software."&#xA;Radio automation software focuses on audio. It may split audio frames and crossfade between different audio sources.

    &#xA;

    I want to continue by adding video support for music videos. This makes it not completely about audio.

    &#xA;

    There is a problem with this. Having audio porition do it's thing while video can be added along side it is difficult. For example, having access to the previous track to be able to crossfade & preloading the song.

    &#xA;

    This is what I currently have which is being run in a thread.

    &#xA;

    int ret;&#xA;int tryCounter{0};&#xA;int64_t end_pts{AV_NOPTS_VALUE};&#xA;int64_t end_duration{AV_NOPTS_VALUE};&#xA;while(true) {&#xA;        std::shared_ptr<cmessage> message;&#xA;&#xA;        ret = queue.Get(message, MessageQueue::MessageQueueFlags::MSQ_NON_BLOCK);&#xA;        if (ret &lt; 0) {&#xA;            if(ret == MessageQueue::MessageQueueRET::MSQ_STOPPED)&#xA;                break;&#xA;            Logger::Log(LOGWARNING, "Playback thread received: {}", ret);&#xA;            break;&#xA;        }&#xA;&#xA;        if (ret == MessageQueue::MessageQueueRET::MSQ_OK &amp;&amp; message) {&#xA;            if (message->IsType(CMessage::PLAY_SONG)) {&#xA;                /* It was requested for the Player to play a new song */&#xA;                std::shared_ptr<cmessageplaysong> songMsg = std::static_pointer_cast<cmessageplaysong>(message);&#xA;                // steal session :D&#xA;                std::unique_ptr<playersession> playerSession = std::move(songMsg->GetSession());&#xA;                if (!playerSession->GetTrack()) {&#xA;                    Logger::Log(LOGWARNING, "PlaybackThread: Ignoring playback song event due to null track");&#xA;                    goto SEND_NEXT_SONG;&#xA;                }&#xA;                if(!playerSession->GetPlaylist())&#xA;                    playerSession->SetPlaylist(m_player->GetPlaylist());&#xA;                if (playerSession->IsPreloaded())&#xA;                    Logger::Log(LOGDEBUG, "PlaybackThread: Received preloaded track.");&#xA;&#xA;                // load track if not loaded already&#xA;                if (!playerSession->Open(playerSession->GetTrack(),&#xA;                                         m_info)) {&#xA;                    Logger::Log(LOGERROR, "Failed to open input");&#xA;                    goto SEND_NEXT_SONG;&#xA;                }&#xA;&#xA;                preloadRequestSent = false;&#xA;                m_nextSession = nullptr;&#xA;&#xA;                std::shared_ptr<track> track = playerSession->GetTrack();&#xA;                track->start_sample = m_player->GetMainOutput()->GetWrittenSamples();&#xA;                track->played = true;&#xA;                // Send current song position to callback thread for the callback function to be run when song starts playing&#xA;                m_player->SendSongPosition(playerSession->GetTrack(), playerSession->GetPlaylist(),&#xA;                                 playerSession->GetTrackPosition());&#xA;&#xA;                // Grab the old one&#xA;                std::unique_ptr<playersession> oldSession = std::move(m_currentSession);&#xA;                // Set current audio instance to this input&#xA;                m_currentSession.swap(playerSession);&#xA;&#xA;                // Crossfade :D&#xA;                ret = CrossFade(oldSession, m_currentSession);&#xA;                if (ret == STREAM_MAX) {&#xA;                    // when the new song goes brrrrr.&#xA;                    // this rarely happens anyway SOO&#xA;                    m_currentSession.swap(oldSession);&#xA;                    goto SEND_NEXT_SONG;&#xA;                }&#xA;&#xA;                end_pts = AV_NOPTS_VALUE;&#xA;                end_duration = m_currentSession->GetDuration();&#xA;                if(m_currentSession->GetTrack()->info.segue_time != AV_NOPTS_VALUE)&#xA;                {&#xA;                    end_duration = m_currentSession->GetTrack()->info.segue_time;&#xA;                    // this is end duration for max samples :D&#xA;                    // this variable is dependent on timebase&#xA;                    end_pts = av_rescale_q(end_duration, CPPAV_TIME_BASE_Q, m_currentSession->GetTimeBase());&#xA;                }&#xA;            }&#xA;            if (message->IsType(CMessage::NEXT_SONG)) {&#xA;                /* request for the thread to play song next */&#xA;                std::shared_ptr<cmessagenextsong> messageNextSong = std::static_pointer_cast<cmessagenextsong>(message);&#xA;                // steal session :D&#xA;                m_nextSession = std::move(messageNextSong->GetSession());&#xA;            }&#xA;        }&#xA;&#xA;        if (!m_currentSession) {&#xA;            /* wait until there is a track that can be played */&#xA;            /* during this, portaudio should not be opened */&#xA;            m_player->GetMainOutput()->OpenPlayback(false);&#xA;            std::this_thread::sleep_for(std::chrono::milliseconds(50));&#xA;            continue;&#xA;        }&#xA;        /* there is input so output should be active */&#xA;        if (!m_player->GetMainOutput()->IsActive()) {&#xA;            m_player->GetMainOutput()->OpenPlayback(true);&#xA;        }&#xA;&#xA;        ret = m_currentSession->Decode(m_frame, end_pts);&#xA;        if (ret == STREAM_WAIT) {&#xA;            continue;&#xA;        } else if (ret == STREAM_EOF || ret == STREAM_MAX) {&#xA;            SEND_NEXT_SONG:&#xA;            if(m_player->GetCurrentTrack())&#xA;                m_player->GetCurrentTrack()->end_sample = m_player->GetMainOutput()->GetWrittenSamples();&#xA;            // Wait until the next song is in the queue for playback&#xA;            QueueNextSong(false);&#xA;            continue;&#xA;        }&#xA;        else if (ret == STREAM_ERROR) { // check &amp; handle errors&#xA;            tryCounter&#x2B;&#x2B;;&#xA;            Logger::Log(LOGERROR, "Decoder replied: Error try counter: {}/{}",&#xA;                        tryCounter, MAX_ERROR_COUNTER);&#xA;            if (tryCounter >= MAX_ERROR_COUNTER) {&#xA;                goto SEND_NEXT_SONG;&#xA;            }&#xA;            continue;&#xA;        }&#xA;        tryCounter = 0;&#xA;&#xA;        int64_t timestamp = 0;&#xA;        if (m_frame->GetPTS() != AV_NOPTS_VALUE) // must convert timestamp to static time base :D makes things easier&#xA;            timestamp = av_rescale_q(m_frame->GetPTS(), m_frame->GetTimeBase(), CPPAV_TIME_BASE_Q);&#xA;&#xA;        // Check if track is about to end to preload next track&#xA;        // TODO make 3 changeable for preloading :)))&#xA;        if (!preloadRequestSent &amp;&amp; timestamp >= end_duration - (3 * AV_TIME_BASE)) {&#xA;            Logger::Log(LOGDEBUG, "Sending next track to preload thread");&#xA;            if (QueueNextSong(true))&#xA;                preloadRequestSent = true;&#xA;        }&#xA;&#xA;        // Write frame into ringbuffer&#xA;        ret = m_player->WriteFrame(m_frame);&#xA;        assert(ret != STREAM_EOF);&#xA;        // Clean out frame :)&#xA;        m_frame->Reset();&#xA;    }&#xA;</cmessagenextsong></cmessagenextsong></playersession></track></playersession></cmessageplaysong></cmessageplaysong></cmessage>

    &#xA;

    It seems awkward already. I have a huge amount of code for preparing the song. I have to keep track of the end duration and the next song. I have to keep track of the playlist. I am using PlayerSession to grab audio frames, handle all audio packet decoding, resampling to a constant sample rate. I don't think that is going to be viable to keep.

    &#xA;