Python Forum
ValueError: could not broadcast input array from shape
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
ValueError: could not broadcast input array from shape
#1
I am an artist creating a sound installation. I want to create to sounds files which contain small fragments of each other.
The code has an error in line 32: ValueError: could not broadcast input array from shape (0,1) into shape (5512,1)
The code is data2[start_frame:end_frame] = data1copy[start_frame:end_frame];

The trouble I've been having is a classic swapping of 2 snippets of data. I need to create a temporary copy to complete the swap.
example of what i mean.
x=3
y=8
x=temp
x=y
y=temp

Any help greaty appreciated,
Larz60+ write Jul-05-2024, 11:00 PM:
Please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.

Attached Files

.py   OPlus.py (Size: 1.81 KB / Downloads: 116)
.wav   example1.wav (Size: 699.79 KB / Downloads: 93)
.wav   example2.wav (Size: 693.04 KB / Downloads: 87)
Reply
#2
Hi,

When using Spyder idle for instance (that's why i like it - see figure), one can see that the size of data1copy is not consistent with start_frame and end_frame variables (to be honest, I do not understand why).

If you basically deep copy it, it works.

import wave
import random
import numpy as np

#################################################################################
output_filename1 = 'swapped_example1.wav'
output_filename2 = 'swapped_example2.wav'

wav_file1 = wave.open('example1.wav', 'rb')
wav_file2 = wave.open('example2.wav', 'rb')

num_frames = wav_file1.getnframes()
num_frames2 = wav_file2.getnframes()

if (num_frames > num_frames2): num_frames = num_frames2

frame_rate = wav_file1.getframerate()

num_channels = wav_file1.getnchannels()
sample_width = wav_file1.getsampwidth()

for i in range(1): # i not "_"
    data1 =     np.frombuffer(wav_file1.readframes(num_frames), dtype=np.int16).reshape(-1, num_channels).copy()
    # data1copy = np.frombuffer(wav_file1.readframes(num_frames), dtype=np.int16).reshape(-1, num_channels).copy()
    data1copy = np.copy(data1)
    data2 =     np.frombuffer(wav_file2.readframes(num_frames), dtype=np.int16).reshape(-1, num_channels).copy()

    rnum= random.randint(0, num_frames - int(frame_rate))
    start_frame = rnum
    end_frame = start_frame + int(frame_rate/8)
    
    # Extract segment data
    data1[start_frame:end_frame] = data2[start_frame:end_frame]
    data2[start_frame:end_frame] = data1copy[start_frame:end_frame]

# Write modified data back to new WAV files
with wave.open(output_filename1, 'wb') as output_file1:
    output_file1.setnchannels(num_channels)
    output_file1.setsampwidth(sample_width)
    output_file1.setframerate(frame_rate)
    output_file1.writeframes(data1.astype(np.int16).tobytes())

with wave.open(output_filename2, 'wb') as output_file2:
    output_file2.setnchannels(num_channels)
    output_file2.setsampwidth(sample_width)
    output_file2.setframerate(frame_rate)
    output_file2.writeframes(data2.astype(np.int16).tobytes())

# Close the input files
wav_file1.close()
wav_file2.close()
output_file1.close()
output_file2.close()

Attached Files

Thumbnail(s)
   
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  output shape problem with np.arange alan6690 5 2,210 Dec-26-2023, 05:44 PM
Last Post: deanhystad
  convert address and broadcast to network object Skaperen 9 3,581 Mar-09-2023, 06:55 PM
Last Post: Skaperen
  simplekml change shape&color issac_n 2 4,035 Aug-20-2022, 07:15 PM
Last Post: Joseph_Paintsil
  ValueError: Found input variables with inconsistent numbers of samples saoko 0 3,335 Jun-16-2022, 06:59 PM
Last Post: saoko
Question Change elements of array based on position of input data Cola_Reb 6 3,335 May-13-2022, 12:57 PM
Last Post: Cola_Reb
  operands could not be broadcast together with shapes (337,451) (225,301) kevinabbot 0 2,155 Dec-14-2021, 04:02 PM
Last Post: kevinabbot
  Can't properly shape an array maaaa2401 3 3,131 Dec-18-2020, 09:32 AM
Last Post: maaaa2401
  Function with array input Gerkamspiano 5 3,845 Dec-01-2020, 08:48 AM
Last Post: Gerkamspiano
  ValueError: shape mismatched: objects cannot be broadcast to a single shape Laplace12 0 5,138 Jul-14-2020, 11:45 AM
Last Post: Laplace12
  Receiving ValueError("bad input shape {0}".format(shape)) error SuryaCitizen 2 4,208 Jun-01-2020, 06:45 AM
Last Post: pyzyx3qwerty

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020