Home
last modified time | relevance | path

Searched refs:clip_frame_number (Results 1 – 5 of 5) sorted by relevance

/dports/multimedia/openshot/openshot-qt-2.6.1/src/windows/
H A Dvideo_widget.py227 clip_frame_number = round(playhead_position - position_of_clip) + start_of_clip + 1
230 … raw_properties = json.loads(self.transforming_clip_object.PropertiesJSON(clip_frame_number))
622clip_frame_number = round(playhead_position_frame - position_of_clip_frame) + start_of_clip_frame
625 … raw_properties = json.loads(self.transforming_clip_object.PropertiesJSON(clip_frame_number))
665 … self.updateClipProperty(self.transforming_clip.id, clip_frame_number, 'origin_y', origin_y)
692 … self.updateClipProperty(self.transforming_clip.id, clip_frame_number, 'shear_x', shear_x)
706 … self.updateClipProperty(self.transforming_clip.id, clip_frame_number, 'shear_x', shear_x)
721 … self.updateClipProperty(self.transforming_clip.id, clip_frame_number, 'shear_y', shear_y)
735 … self.updateClipProperty(self.transforming_clip.id, clip_frame_number, 'shear_y', shear_y)
866clip_frame_number = round(playhead_position_frame - position_of_clip_frame) + start_of_clip_frame
[all …]
/dports/multimedia/libopenshot/libopenshot-0.2.7/src/
H A DTimeline.cpp606 …_layer(std::shared_ptr<Frame> new_frame, Clip* source_clip, int64_t clip_frame_number, bool is_top… in add_layer() argument
614 source_frame = GetOrCreateFrame(new_frame, source_clip, clip_frame_number, options); in add_layer()
622 …eline::add_layer", "new_frame->number", new_frame->number, "clip_frame_number", clip_frame_number); in add_layer()
629 …>GetAudioChannelsCount() == info.channels && source_clip->has_audio.GetInt(clip_frame_number) != 0) in add_layer()
633 float previous_volume = source_clip->volume.GetValue(clip_frame_number - 1); in add_layer()
634 float volume = source_clip->volume.GetValue(clip_frame_number); in add_layer()
635 …int channel_filter = source_clip->channel_filter.GetInt(clip_frame_number); // optional channel to… in add_layer()
636 …int channel_mapping = source_clip->channel_mapping.GetInt(clip_frame_number); // optional channel … in add_layer()
889 long clip_frame_number = requested_frame - clip_start_position + clip_start_frame; in GetFrame() local
892 …, clip->Start(), "info.fps.ToFloat()", info.fps.ToFloat(), "clip_frame_number", clip_frame_number); in GetFrame()
[all …]
H A DFrameMapper.h159 int64_t AdjustFrameNumber(int64_t clip_frame_number);
H A DTimeline.h186 …tr<openshot::Frame> new_frame, openshot::Clip* source_clip, int64_t clip_frame_number, bool is_top…
H A DFrameMapper.cpp949 int64_t FrameMapper::AdjustFrameNumber(int64_t clip_frame_number) { in AdjustFrameNumber() argument
965 int64_t frame_number = clip_frame_number + clip_start_position - clip_start_frame; in AdjustFrameNumber()