pozelli
pozelli
Thank you @cosmin Even using the custom PSSH, the playback is not possible after 8 seconds and the error seems to be the same. If I use: https://integration.uat.widevine.com/player With this...
Yes, I'm able to player other Widevine content on the same platform. What is odd is that the media internals: chrome://media-internals shows the following error: "no key for key ID...
Perhaps the configuration could be something like this: ``` Meilisearch::Rails.configuration = { remotes: { 'ms-01' => { meilisearch_url: ENV.fetch('MEILISEARCH_HOST', '...'), meilisearch_api_key: ENV.fetch('MEILISEARCH_API_KEY', '...'), }, 'ms-02' => { meilisearch_url: ENV.fetch('MEILISEARCH_HOST', '...'),...
What if the call `displayed_attributes [:id]` (consider the primary key) were enforced when the displayed_attributes method is not explicitly called?
@ellnix I really like this idea! Your approach ensures that each page has the correct number of results while gradually cleaning up invalid documents. Instead of requiring manual intervention (deleting...
Regarding the idea of abandoning pagination, I wonder if it will perform well, since the raw search results would include all items. Perhaps using `displayed_attributes [:id]` is sufficient.
 What do you think guys? Examples: ``` Video.ms_search('', sort: ['name:desc']).where('id < 50').page(1).per(1).first.id => 48 Video.ms_search('', sort: ['name:asc']).where('id < 50').page(1).per(1).first.id => 47 ``` @ellnix @brunoocasali
I imagine something like this for the multisearch: ``` search_result = MeiliSearch::Rails.multi_search( indexes: { media: { queries: { audios: { q: 'Michael Jackson', collection: Audio.user(user), filter: ['bitrate > 180000'], page:...
Some comments on the current situation: - It seems that we already have an issue when handling pagination even in simple searches (non-multi), as the search is performed on the...
Hi! @joeyparrish I think I am experiencing a related issue. ``` packager in='/tmp/packager/encoder/1/video_cmaf_480p.mp4',stream=video,segment_template='/tmp/packager/upload/1/cmaf/video/480p/$Number$.m4s',playlist_name='/tmp/packager/upload/1/cmaf/video/480p.m3u8',init_segment='/tmp/packager/upload/1/cmaf/video/480p/init.mp4',drm_label='DEFAULT' in='/tmp/packager/encoder/1/video_cmaf_480p.mp4',stream=video,segment_template='/tmp/packager/upload/1/cmaf/trickplay/480p/$Number$.m4s',playlist_name='/tmp/packager/upload/1/cmaf/trickplay/480p.m3u8',init_segment='/tmp/packager/upload/1/cmaf/trickplay/480p/init.mp4',trick_play_factor=1,skip_encryption=1 --segment_duration 4 --fragment_duration 2 --enable_raw_key_encryption --keys label=DEFAULT:key_id=268176bbdaae4be89b1bc6d07610c778:key=9f3e0c3d8e7cc88208f097ea835b8699 --protection_systems FairPlay,Widevine --protection_scheme cbcs --mpd_output '/tmp/packager/upload/1/cmaf/auto.mpd' --hls_master_playlist_output '/tmp/packager/upload/1/cmaf/auto.m3u8' --hls_key_uri...